Mercurial > hg > pub > prymula > com
annotate immposiblerush/Makefile @ 8:923377f8ebcb
immposiblerush-0.230919-0_ALLDISTRIBUTIONS
author | prymula <prymula76@outlook.com> |
---|---|
date | Sat, 03 Feb 2024 18:23:04 +0100 |
parents | bb29f1c89c99 |
children |
rev | line source |
---|---|
0 | 1 prefix=/usr |
2 | |
3 all: | |
4 ant compile | |
5 ant jar | |
6 | |
7 clean: | |
8 ant clean | |
9 | |
10 install: build/jar/ImmposibleRush.jar | |
11 mkdir -pm 0755 $(prefix)/games | |
12 install -m 0644 build/jar/ImmposibleRush.jar $(prefix)/games | |
13 mkdir -pm 0755 $(prefix)/share/immposiblerush | |
7
bb29f1c89c99
immposiblerush-0.230919-0_PKG
prymula <prymula76@outlook.com>
parents:
0
diff
changeset
|
14 mkdir -pm 0755 $(prefix)/share/applications |
0 | 15 install -m 0644 res/immposiblerush.png $(prefix)/share/immposiblerush |
7
bb29f1c89c99
immposiblerush-0.230919-0_PKG
prymula <prymula76@outlook.com>
parents:
0
diff
changeset
|
16 install -m 0644 ImmposibleRush.desktop $(prefix)/share/applications |
0 | 17 |
18 .PHONY: install |