Mercurial > hg > pub > prymula > com
annotate Jttt/makefile @ 20:b637ac9c6605
lamertetris - PKGBUILD corrections
author | Przemyslaw <prymula76@outlook.com> |
---|---|
date | Sun, 31 Mar 2024 16:21:08 +0200 |
parents | 2787f5e749ae |
children |
rev | line source |
---|---|
0 | 1 # Link command: |
2 #choinka: engin.o | |
3 # gcc engin.o -o choinka | |
4 | |
5 # Compilation commands: | |
6 #engin.o: engin.c | |
7 # gcc -c engin.c -o engin.o | |
8 | |
9 | |
10 prefix=/usr/local | |
11 | |
12 install: build/jar/Jttt.jar | |
13 install -m 0755 build/jar/Jttt.jar $(prefix)/games | |
14 mkdir -pm 0777 $(prefix)/share/jttt | |
15 mkdir -pm 0777 $(prefix)/share/jttt/icons | |
16 install -m 0755 jttt.png $(prefix)/share/jttt/icons | |
17 install -m 0755 Jttt.desktop /usr/share/applications | |
18 | |
19 .PHONY: install |