Mercurial > hg > Members > kono > nitros9-code
annotate 3rdparty/fmgrs/msf/makefile @ 1363:53c50c807d55
Major move to new NitrOS-9 project
author | boisy |
---|---|
date | Fri, 26 Sep 2003 12:26:10 +0000 |
parents | 938ec7bd301f |
children | 53c42701f680 e4a0f58a5f9b |
rev | line source |
---|---|
0 | 1 # MSF file manager |
2 # | |
3 | |
1363 | 4 include ../../../rules.mak |
0 | 5 |
1363 | 6 DEPENDS = ./makefile |
0 | 7 |
1043 | 8 FMGRS = msf_6309.mn msf_6809.mn |
9 DESCS = m0_40d.dd | |
10 ALLOBJS = $(FMGRS) $(DESCS) | |
0 | 11 |
72 | 12 all: $(ALLOBJS) $(DEPENDS) |
0 | 13 |
14 clean: | |
15 $(RM) $(ALLOBJS) | |
16 | |
1043 | 17 msf_6309.mn: msf.asm |
18 $(AS) $(AFLAGS) $< $(ASOUT)$@ -e -aH6309=1 | |
19 | |
20 msf_6809.mn: msf.asm | |
21 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
22 |