annotate level1/makefile @ 163:03bb361a6a42

Minor changes
author boisy
date Wed, 10 Jul 2002 01:01:09 +0000
parents 5eceecf6159c
children 9ca004356f09
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
1 include ../Makefile.rules
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
2
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
3 # Make all components
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
4 all:
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
5 @$(ECHO) "*********************************************"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
6 @$(ECHO) "* *"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
7 @$(ECHO) "* OS-9 Level One Distribution *"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
8 @$(ECHO) "* (C) 1983 Tandy Corporation *"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
9 @$(ECHO) "* *"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
10 @$(ECHO) "*********************************************"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
11 cd CMDS; make
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
12 cd MODULES; make
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
13 cd BOOTFILES; make
107
5eceecf6159c Updated Makefiles with new targets
boisy
parents: 0
diff changeset
14 cd DEFS; make
5eceecf6159c Updated Makefiles with new targets
boisy
parents: 0
diff changeset
15 cd SYS; make
5eceecf6159c Updated Makefiles with new targets
boisy
parents: 0
diff changeset
16 $(UNIX2OS9) startup
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
17
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
18 # Clean all components
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
19 clean:
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
20 -cd CMDS; make clean
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
21 -cd MODULES; make clean
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
22 -cd BOOTFILES; make clean
107
5eceecf6159c Updated Makefiles with new targets
boisy
parents: 0
diff changeset
23 -cd DEFS; make clean
5eceecf6159c Updated Makefiles with new targets
boisy
parents: 0
diff changeset
24 -cd SYS; make clean
5eceecf6159c Updated Makefiles with new targets
boisy
parents: 0
diff changeset
25 -$(OS92UNIX) startup
5eceecf6159c Updated Makefiles with new targets
boisy
parents: 0
diff changeset
26