annotate lib/makefile @ 2887:a1296ceb6797

boot_scsi.asm: Remove misplaced # in CntrSlot FCB constant
author Tormod Volden <debian.tormod@gmail.com>
date Sun, 24 Nov 2013 17:03:01 +0100
parents e4a0f58a5f9b
children 1addfd8c9d5f
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2758
e4a0f58a5f9b Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents: 2533
diff changeset
1 ifndef NITROS9DIR
e4a0f58a5f9b Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents: 2533
diff changeset
2 NITROS9DIR = $(HOME)/nitros9
e4a0f58a5f9b Found that people who do not have the envirornment variable NITROS9DIR set before building the project get a error missing file "/rules.mak". Found this is caused do to the fact that the code to set this envirornment variable is in the rules.mak which can't get loaded.
drencor-xeen
parents: 2533
diff changeset
3 endif
2328
cfb7dcf4322c added lib
boisy
parents:
diff changeset
4 include $(NITROS9DIR)/rules.mak
cfb7dcf4322c added lib
boisy
parents:
diff changeset
5
2533
0104de794ec7 Added sys.zip
boisy
parents: 2487
diff changeset
6 SRC = os9defs.a scfdefs.a rbfdefs.a pipedefs.a systype.a net.a
0104de794ec7 Added sys.zip
boisy
parents: 2487
diff changeset
7
0104de794ec7 Added sys.zip
boisy
parents: 2487
diff changeset
8 all: sys6809l1.l sys6809l2.l sys6309l2.l net.l alib.l sys.zip
0104de794ec7 Added sys.zip
boisy
parents: 2487
diff changeset
9
0104de794ec7 Added sys.zip
boisy
parents: 2487
diff changeset
10 sys.zip: $(SRC)
0104de794ec7 Added sys.zip
boisy
parents: 2487
diff changeset
11 zip $@ $(SRC)
2328
cfb7dcf4322c added lib
boisy
parents:
diff changeset
12
cfb7dcf4322c added lib
boisy
parents:
diff changeset
13 sys6809l1.l: sys6809l1.a
cfb7dcf4322c added lib
boisy
parents:
diff changeset
14
cfb7dcf4322c added lib
boisy
parents:
diff changeset
15 sys6809l2.l: sys6809l2.a
cfb7dcf4322c added lib
boisy
parents:
diff changeset
16
cfb7dcf4322c added lib
boisy
parents:
diff changeset
17 sys6309l2.l: sys6309l2.a
cfb7dcf4322c added lib
boisy
parents:
diff changeset
18
2474
7d70b7e1cb21 Moved net and alib files into here
boisy
parents: 2331
diff changeset
19 net.l: net.a
7d70b7e1cb21 Moved net and alib files into here
boisy
parents: 2331
diff changeset
20
7d70b7e1cb21 Moved net and alib files into here
boisy
parents: 2331
diff changeset
21 alib.l:
2487
131a760b4f14 Fixed issue
boisy
parents: 2474
diff changeset
22 cd alib; make
2474
7d70b7e1cb21 Moved net and alib files into here
boisy
parents: 2331
diff changeset
23
2328
cfb7dcf4322c added lib
boisy
parents:
diff changeset
24 clean:
2533
0104de794ec7 Added sys.zip
boisy
parents: 2487
diff changeset
25 $(RM) *.l *.r *.zip
2487
131a760b4f14 Fixed issue
boisy
parents: 2474
diff changeset
26 cd alib; make clean