diff level1/makefile @ 0:6641a883d6b0

Initial revision
author boisy
date Thu, 04 Apr 2002 16:34:12 +0000
parents
children 5eceecf6159c
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/level1/makefile	Thu Apr 04 16:34:12 2002 +0000
@@ -0,0 +1,19 @@
+include ../Makefile.rules
+
+# Make all components
+all:
+	@$(ECHO) "*********************************************"
+	@$(ECHO) "*                                           *"
+	@$(ECHO) "*        OS-9 Level One Distribution        *"
+	@$(ECHO) "*        (C) 1983  Tandy Corporation        *"
+	@$(ECHO) "*                                           *"
+	@$(ECHO) "*********************************************"
+	cd CMDS; make
+	cd MODULES; make
+	cd BOOTFILES; make
+
+# Clean all components
+clean:
+	-cd CMDS; make clean
+	-cd MODULES; make clean
+	-cd BOOTFILES; make clean