Mercurial > hg > Members > kono > nitros9-code
annotate rules.mak @ 355:71b60814fb01
Makefiles modified for uniformity
author | boisy |
---|---|
date | Thu, 25 Jul 2002 14:38:48 +0000 |
parents | 2a7bfa7ce709 |
children | aabf3f1835f1 |
rev | line source |
---|---|
0 | 1 # Rules for making OS-9/6X09 modules |
2 | |
331 | 3 # These macros should change according to where the base directory of the |
299
ce65a48362d5
Added BASE macro, o2u/d2u now execute relative to hosttools
boisy
parents:
224
diff
changeset
|
4 # OS-9 source tree is located |
ce65a48362d5
Added BASE macro, o2u/d2u now execute relative to hosttools
boisy
parents:
224
diff
changeset
|
5 BASEDIR = /home/boisy/os9 |
331 | 6 OS9TOOLSDIR = /home/boisy/bin |
7 | |
8 | |
9 #################### DO NOT CHANGE ANYTHING BELOW THIS LINE #################### | |
10 | |
299
ce65a48362d5
Added BASE macro, o2u/d2u now execute relative to hosttools
boisy
parents:
224
diff
changeset
|
11 |
0 | 12 # If we're using the OS-9 emulator and the *real* OS-9 assembler, |
13 # uncomment the following two lines. | |
14 #AS = os9 /mnt2/src/ocem/os9/asm | |
15 #ASOUT = o= | |
16 | |
17 # Use the cross assembler | |
331 | 18 AS = $(OS9TOOLSDIR)/os9asm |
0 | 19 ASOUT = -o= |
20 AFLAGS = -q | |
21 | |
22 # Commands | |
331 | 23 MAKDIR = mkdir |
224 | 24 RM = rm -f |
0 | 25 MERGE = cat |
26 ECHO = echo | |
331 | 27 CD = cd |
28 CP = cp | |
29 TAR = tar | |
0 | 30 CHMOD = chmod |
331 | 31 IDENT = $(OS9TOOLSDIR)/os9ident |
32 IDENT_SHORT = $(IDENT) -s | |
33 UNIX2OS9 = $(OS9TOOLSDIR)/u2o | |
34 OS92UNIX = $(OS9TOOLSDIR)/o2u | |
35 OS9FORMAT = $(OS9TOOLSDIR)/os9format | |
36 OS9GEN = $(OS9TOOLSDIR)/os9gen | |
37 PADROM = $(OS9TOOLSDIR)/os9padrom | |
38 MOUNT = sudo mount | |
39 UMOUNT = sudo umount | |
40 LOREMOVE = sudo /sbin/losetup -d | |
41 LOSETUP = sudo /sbin/losetup | |
42 LINK = ln | |
43 SOFTLINK = $(LINK) -s | |
0 | 44 |
355 | 45 # Directories |
46 3RDPARTY = $(BASEDIR)/3rdparty | |
47 LEVEL1 = $(BASEDIR)/level1 | |
48 LEVEL2 = $(BASEDIR)/level2v3 | |
49 | |
0 | 50 # File managers |
51 %.mn: %.asm | |
52 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
53 | |
54 # Device drivers | |
55 %.dr: %.asm | |
56 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
57 | |
58 # Device descriptors | |
59 %.dd: %.asm | |
60 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
61 | |
62 # Window device descriptors | |
63 %.dw: %.asm | |
64 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
65 | |
66 # Terminal device descriptors | |
67 %.dt: %.asm | |
68 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
69 | |
70 # I/O subroutines | |
71 %.io: %.asm | |
72 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
73 | |
74 # 60Hz clocks | |
75 %.60hz: %.asm | |
63 | 76 $(AS) -aTPS=60 $(AFLAGS) $< $(ASOUT)$@ |
0 | 77 |
78 # 50Hz clocks | |
79 %.50hz: %.asm | |
63 | 80 $(AS) -aTPS=50 $(AFLAGS) $< $(ASOUT)$@ |
0 | 81 |
82 # All other modules | |
83 %: %.asm | |
84 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
85 |