Mercurial > hg > Members > kono > nitros9-code
annotate rules.mak @ 1780:fb287e5e27c1
Added make
author | boisy |
---|---|
date | Sun, 03 Apr 2005 18:57:44 +0000 |
parents | 7f2e75d5b62d |
children | 0af3f5f84033 |
rev | line source |
---|---|
1393 | 1 # The NitrOS-9 Project |
2 # Project-Wide Rules | |
0 | 3 |
1754
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
4 # NOTE: THERE IS NO NEED TO MODIFY THIS FILE ANYMORE! |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
5 # Environment variables are now used to specify any directories other |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
6 # than the defaults below: |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
7 # |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
8 # NITROS9DIR - base directory of the NitrOS-9 project on your system |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
9 # COCOTOOLSBIN - directory where CoCoTools binaries are (assembler, etc) |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
10 # |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
11 # If the defaults below are fine, then there is no need to set any |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
12 # environment variables. |
331 | 13 |
14 #################### DO NOT CHANGE ANYTHING BELOW THIS LINE #################### | |
15 | |
1754
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
16 ifndef NITROS9DIR |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
17 NITROS9DIR = $(HOME)/nitros9 |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
18 endif |
1771 | 19 ifndef CLOUD9DIR |
20 CLOUD9DIR = $(HOME)/cloud9 | |
21 endif | |
1754
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
22 ifndef COCOTOOLSBIN |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
23 COCOTOOLSBIN = $(HOME)/bin |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
24 endif |
1771 | 25 |
26 C9 = $(CLOUD9DIR) | |
1760
27e85b681dab
Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents:
1759
diff
changeset
|
27 DEFSDIR = $(NITROS9DIR)/defs |
1754
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
28 DSKDIR = $(NITROS9DIR)/dsks |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
29 |
299
ce65a48362d5
Added BASE macro, o2u/d2u now execute relative to hosttools
boisy
parents:
224
diff
changeset
|
30 |
0 | 31 # If we're using the OS-9 emulator and the *real* OS-9 assembler, |
32 # uncomment the following two lines. | |
33 #AS = os9 /mnt2/src/ocem/os9/asm | |
34 #ASOUT = o= | |
35 | |
36 # Use the cross assembler | |
1760
27e85b681dab
Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents:
1759
diff
changeset
|
37 AS = $(COCOTOOLSBIN)/mamou -i=$(DEFSDIR) |
27e85b681dab
Fixed DEFS issue in 6809l2 and 6309l2 (thanks Rodney!)
boisy
parents:
1759
diff
changeset
|
38 #AS = $(COCOTOOLSBIN)/os9asm -i=$(DEFSDIR) |
1528 | 39 ASOUT = -o |
1270 | 40 AFLAGS = -q |
0 | 41 |
42 # Commands | |
1754
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
43 MAKDIR = $(COCOTOOLSBIN)/os9 makdir |
224 | 44 RM = rm -f |
0 | 45 MERGE = cat |
1654
f62ca34d4419
Level 2: shellplus stand-alone file is no longer copied to CMDS
boisy
parents:
1593
diff
changeset
|
46 MOVE = mv |
1123
358aeaeedea9
changed echo to /bin/echo because of MinGW (Windows) needs it
boisy
parents:
1119
diff
changeset
|
47 ECHO = /bin/echo |
331 | 48 CD = cd |
1754
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
49 CP = $(COCOTOOLSBIN)/os9 copy -o=0 |
1528 | 50 CPL = $(CP) -l |
331 | 51 TAR = tar |
0 | 52 CHMOD = chmod |
1754
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
53 IDENT = $(COCOTOOLSBIN)/os9 ident |
331 | 54 IDENT_SHORT = $(IDENT) -s |
1754
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
55 #UNIX2OS9 = $(COCOTOOLSBIN)/u2o |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
56 #OS92UNIX = $(COCOTOOLSBIN)/o2u |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
57 OS9FORMAT = $(COCOTOOLSBIN)/os9 format |
1759 | 58 OS9FORMAT_SS35 = $(COCOTOOLSBIN)/os9 format -t35 -ss -dd |
59 OS9FORMAT_SS40 = $(COCOTOOLSBIN)/os9 format -t40 -ss -dd | |
60 OS9FORMAT_SS80 = $(COCOTOOLSBIN)/os9 format -t80 -ss -dd | |
61 OS9FORMAT_DS40 = $(COCOTOOLSBIN)/os9 format -t40 -ds -dd | |
62 OS9FORMAT_DS80 = $(COCOTOOLSBIN)/os9 format -t80 -ds -dd | |
1754
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
63 OS9GEN = $(COCOTOOLSBIN)/os9 gen |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
64 OS9RENAME = $(COCOTOOLSBIN)/os9 rename |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
65 OS9ATTR = $(COCOTOOLSBIN)/os9 attr -q |
1126 | 66 OS9ATTR_TEXT = $(OS9ATTR) -npe -npw -pr -ne -w -r |
67 OS9ATTR_EXEC = $(OS9ATTR) -pe -npw -pr -e -w -r | |
1754
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
68 PADROM = $(COCOTOOLSBIN)/os9 padrom |
331 | 69 MOUNT = sudo mount |
70 UMOUNT = sudo umount | |
71 LOREMOVE = sudo /sbin/losetup -d | |
72 LOSETUP = sudo /sbin/losetup | |
73 LINK = ln | |
74 SOFTLINK = $(LINK) -s | |
1123
358aeaeedea9
changed echo to /bin/echo because of MinGW (Windows) needs it
boisy
parents:
1119
diff
changeset
|
75 ARCHIVE = zip -D |
0 | 76 |
355 | 77 # Directories |
1754
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
78 3RDPARTY = $(NITROS9DIR)/3rdparty |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
79 6809L1 = $(NITROS9DIR)/6809l1 |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
80 6809L2 = $(NITROS9DIR)/6809l2 |
9092b25eeb4c
rules.mak now uses environment variables as an alternative for placement of
boisy
parents:
1729
diff
changeset
|
81 6309L2 = $(NITROS9DIR)/6309l2 |
355 | 82 |
0 | 83 # File managers |
84 %.mn: %.asm | |
85 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
86 | |
87 # Device drivers | |
88 %.dr: %.asm | |
89 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
90 | |
91 # Device descriptors | |
92 %.dd: %.asm | |
93 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
94 | |
1257 | 95 # Subroutine modules |
96 %.sb: %.asm | |
97 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
98 | |
0 | 99 # Window device descriptors |
100 %.dw: %.asm | |
101 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
102 | |
103 # Terminal device descriptors | |
104 %.dt: %.asm | |
105 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
106 | |
107 # I/O subroutines | |
108 %.io: %.asm | |
109 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
110 | |
111 # All other modules | |
112 %: %.asm | |
113 $(AS) $(AFLAGS) $< $(ASOUT)$@ | |
114 |