Mercurial > hg > pub > prymula > com
annotate immposiblerush/Makefile @ 16:8fa14e28f099
flappyufo-spec fix
author | Przemyslaw <prymula76@outlook.com> |
---|---|
date | Sat, 24 Feb 2024 17:25:30 +0100 |
parents | 923377f8ebcb |
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 |