annotate lib/makefile @ 2802:58ca94b06908 lwtools-port

now built from defs files
author Boisy Pitre <boisy.pitre@nuance.com>
date Fri, 01 Feb 2013 19:26:44 -0600
parents 9ffe2daeb011
children d911fcfc0211
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
2328
cfb7dcf4322c added lib
boisy
parents:
diff changeset
1 include $(NITROS9DIR)/rules.mak
cfb7dcf4322c added lib
boisy
parents:
diff changeset
2
2802
58ca94b06908 now built from defs files
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2801
diff changeset
3 all: libnos96809l1.a libnos96809l2.a libnos96309l2.a libnet.a libalib.a
2328
cfb7dcf4322c added lib
boisy
parents:
diff changeset
4
2802
58ca94b06908 now built from defs files
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2801
diff changeset
5 libnos96809l1.a: sys6809l1.o
2801
9ffe2daeb011 Reworked libraries to adhere to lwlink's naming specifications
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2793
diff changeset
6 lwar -c $@ $?
9ffe2daeb011 Reworked libraries to adhere to lwlink's naming specifications
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2793
diff changeset
7
2802
58ca94b06908 now built from defs files
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2801
diff changeset
8 libnos96809l2.a: sys6809l2.o
2801
9ffe2daeb011 Reworked libraries to adhere to lwlink's naming specifications
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2793
diff changeset
9 lwar -c $@ $?
2328
cfb7dcf4322c added lib
boisy
parents:
diff changeset
10
2802
58ca94b06908 now built from defs files
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2801
diff changeset
11 libnos96309l2.a: sys6309l2.o
2801
9ffe2daeb011 Reworked libraries to adhere to lwlink's naming specifications
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2793
diff changeset
12 lwar -c $@ $?
2474
7d70b7e1cb21 Moved net and alib files into here
boisy
parents: 2331
diff changeset
13
2801
9ffe2daeb011 Reworked libraries to adhere to lwlink's naming specifications
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2793
diff changeset
14 libnet.a: net.o
9ffe2daeb011 Reworked libraries to adhere to lwlink's naming specifications
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2793
diff changeset
15 lwar -c $@ $?
2782
aaba193af04f Updated code to use lwasm/lwlink
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2533
diff changeset
16
2801
9ffe2daeb011 Reworked libraries to adhere to lwlink's naming specifications
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2793
diff changeset
17 libalib.a:
2487
131a760b4f14 Fixed issue
boisy
parents: 2474
diff changeset
18 cd alib; make
2474
7d70b7e1cb21 Moved net and alib files into here
boisy
parents: 2331
diff changeset
19
2328
cfb7dcf4322c added lib
boisy
parents:
diff changeset
20 clean:
2783
03f26e88b809 Renamed files and setup for lwasm/lwlink work
Boisy Pitre <boisy.pitre@nuance.com>
parents: 2782
diff changeset
21 $(RM) *.a *.o
2487
131a760b4f14 Fixed issue
boisy
parents: 2474
diff changeset
22 cd alib; make clean