annotate lib/makefile @ 2772:0a3f4d8ea6d5

Found ENDC in wrong location in dwread.asm and dwwrite.asm. Corrected. Moved the native 6309 code in dwread.asm and dwwrite.asm into the H6309 labeled area and changed IFEQ H6309 to IFNE H6309. Also moved the 57600bps 6809 code to the default location. This change had been done in the old dwread.asm and dwwrite.asm files to make it easier to follow. Though these two files were overwritten from the HDBDOS project dwread.asm and dwwrite.asm files. So this conversion needed to be done again so it made the source easier to follow.
author drencor-xeen
date Wed, 23 Jan 2013 12:36:55 -0600
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