From 18e499686d1c9991b65dc79272038b291bc14c5d Mon Sep 17 00:00:00 2001 From: Przemyslaw Date: Mon, 1 Apr 2024 09:01:24 +0200 Subject: Init --- makefile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 makefile (limited to 'makefile') diff --git a/makefile b/makefile new file mode 100644 index 0000000..ed10fc2 --- /dev/null +++ b/makefile @@ -0,0 +1,19 @@ +# Link command: +#choinka: engin.o +# gcc engin.o -o choinka + +# Compilation commands: +#engin.o: engin.c +# gcc -c engin.c -o engin.o + + +prefix=/usr/local + +install: build/jar/ColorsMemory.jar + install -m 0755 build/jar/ColorsMemory.jar $(prefix)/games + mkdir -pm 0777 $(prefix)/share/colorsmemory_jar + mkdir -pm 0777 $(prefix)/share/colorsmemory_jar/icons + install -m 0755 colorsmemory.png $(prefix)/share/colorsmemory_jar/icons + install -m 0755 ColorsMemory.desktop /usr/share/applications + +.PHONY: install -- cgit v1.2.3