From 74a88f882ea83593d727e7031e20791349c013cd Mon Sep 17 00:00:00 2001 From: Przemyslaw Date: Mon, 1 Apr 2024 09:10:43 +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..8242eef --- /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/Jttt.jar + install -m 0755 build/jar/Jttt.jar $(prefix)/games + mkdir -pm 0777 $(prefix)/share/jttt + mkdir -pm 0777 $(prefix)/share/jttt/icons + install -m 0755 jttt.png $(prefix)/share/jttt/icons + install -m 0755 Jttt.desktop /usr/share/applications + +.PHONY: install -- cgit v1.2.3