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..b9db164 --- /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 + +install: build/jar/ColorsMemory.jar + install -m 0644 build/jar/ColorsMemory.jar $(prefix)/games + mkdir -pm 0755 $(prefix)/share/colorsmemory + mkdir -pm 0755 $(prefix)/share/colorsmemory/icons + install -m 0644 colorsmemory.png $(prefix)/share/colorsmemory/icons + install -m 0644 ColorsMemory.desktop /usr/share/applications + +.PHONY: install -- cgit v1.2.3