Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/packages/arcadepak/thexder/makefile @ 2910:87f2133301b0
Remove execute permissions from files that should not have it
author | Tormod Volden <debian.tormod@gmail.com> |
---|---|
date | Sat, 11 Jan 2014 21:52:42 +0100 |
parents | 28ed72477814 |
children |
rev | line source |
---|---|
2610 | 1 include $(NITROS9DIR)/rules.mak |
2 | |
3 DEPENDS = ./makefile | |
4 | |
5 CMDS = thexder thexs | |
6 | |
7 SYSFILES = ia.fnt | |
8 | |
2762
9b29d654db13
Added empty_smash.txt and empty_thexder.txt to their respective folders and updated makefile(s) to use these files for their blank ROOT variables.
drencor-xeen
parents:
2761
diff
changeset
|
9 ROOTFILES = empty_thexder.txt |
9b29d654db13
Added empty_smash.txt and empty_thexder.txt to their respective folders and updated makefile(s) to use these files for their blank ROOT variables.
drencor-xeen
parents:
2761
diff
changeset
|
10 |
2610 | 11 ALLOBJS = $(CMDS) |
12 | |
13 all: $(ALLOBJS) | |
14 | |
15 thexder: thexder.asm | |
16 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
17 | |
18 clean: | |
19 $(RM) $(ALLOBJS) | |
20 | |
21 showobjs: | |
22 @$(ECHO) $(CMDS) | |
23 | |
24 showsys: | |
25 @$(ECHO) $(SYSFILES) | |
26 | |
27 showroot: | |
28 @$(ECHO) $(ROOTFILES) |