diff lib/makefile @ 2783:03f26e88b809 lwtools-port

Renamed files and setup for lwasm/lwlink work
author Boisy Pitre <boisy.pitre@nuance.com>
date Sat, 26 Jan 2013 17:18:24 -0600
parents aaba193af04f
children 2d45c7285ae4
line wrap: on
line diff
--- a/lib/makefile	Sat Jan 26 08:26:31 2013 -0600
+++ b/lib/makefile	Sat Jan 26 17:18:24 2013 -0600
@@ -1,22 +1,24 @@
 include $(NITROS9DIR)/rules.mak
 
-SRC = os9s.a scfs.a rbfs.a pipes.a systype.a net.a drivewire.a
+SRC = os9s.as scfs.as rbfs.as pipes.as systype.as net.as drivewire.as
 
-all: sys6809l1.l sys6809l2.l sys6309l2.l net.l alib.l
-
-sys6809l1.l: sys6809l1.a
+all: sys6809l1.a sys6809l2.a sys6309l2.a net.a
 
-sys6809l2.l: sys6809l2.a
-
-sys6309l2.l: sys6309l2.a
+sys6809l1.a: sys6809l1.o
+sys6809l2.a: sys6809l2.o
+sys6309l2.a: sys6309l2.o
+net.a: net.o
 
-net.l: net.a
+sys6809l1.o: sys6809l1.as
+sys6809l2.o: sys6809l2.as
+sys6309l2.o: sys6309l2.as
+net.o: net.as
 
-drivewire.l: drivewire.a
+drivewire.a: drivewire.a
 
 alib.l:
 	cd alib; make
 
 clean:
-	$(RM) *.l *.r *.zip
+	$(RM) *.a *.o
 	cd alib; make clean