changeset 107:5eceecf6159c

Updated Makefiles with new targets
author boisy
date Sat, 06 Jul 2002 15:28:39 +0000
parents 1db3e85d5133
children 123c67412efc
files level1/cmds/makefile level1/makefile level1/modules/makefile
diffstat 3 files changed, 13 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/level1/cmds/makefile	Sat Jul 06 15:27:58 2002 +0000
+++ b/level1/cmds/makefile	Sat Jul 06 15:28:39 2002 +0000
@@ -20,3 +20,6 @@
 
 identify:
 	$(IDENT_SHORT) $(ALLOBJS)
+
+showobjs:
+	@echo $(ALLOBJS)
--- a/level1/makefile	Sat Jul 06 15:27:58 2002 +0000
+++ b/level1/makefile	Sat Jul 06 15:28:39 2002 +0000
@@ -11,9 +11,16 @@
 	cd CMDS; make
 	cd MODULES; make
 	cd BOOTFILES; make
+	cd DEFS; make
+	cd SYS; make
+	$(UNIX2OS9) startup
 
 # Clean all components
 clean:
 	-cd CMDS; make clean
 	-cd MODULES; make clean
 	-cd BOOTFILES; make clean
+	-cd DEFS; make clean
+	-cd SYS; make clean
+	-$(OS92UNIX) startup
+
--- a/level1/modules/makefile	Sat Jul 06 15:27:58 2002 +0000
+++ b/level1/modules/makefile	Sat Jul 06 15:28:39 2002 +0000
@@ -38,3 +38,6 @@
 
 identify:
 	$(IDENT_SHORT) $(ALLOBJS)
+
+showobjs:
+	@echo $(ALLOBJS)