annotate level1/makefile @ 410:9ed77eeace37

All floppy disk descriptor modules now made with dx.asm and different targets specified in Makefile. Changed $07 to HW.Page in several descriptors
author boisy
date Wed, 04 Sep 2002 16:47:13 +0000
parents 9ca004356f09
children 14157dc9e1d2
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
323
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
3 ROOTOBJS = startup
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
4
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
5 # Make all components
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
6 all:
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
7 @$(ECHO) "*********************************************"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
8 @$(ECHO) "* *"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
9 @$(ECHO) "* OS-9 Level One Distribution *"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
10 @$(ECHO) "* (C) 1983 Tandy Corporation *"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
11 @$(ECHO) "* *"
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
12 @$(ECHO) "*********************************************"
323
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
13 $(CD) CMDS; make
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
14 $(CD) MODULES; make
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
15 $(CD) BOOTFILES; make
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
16 $(CD) DEFS; make
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
17 $(CD) SYS; make
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
18 $(UNIX2OS9) $(ROOTOBJS)
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
19 $(CHMOD) 644 $(ROOTOBJS)
0
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
20
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
21 # Clean all components
6641a883d6b0 Initial revision
boisy
parents:
diff changeset
22 clean:
323
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
23 -$(CD) CMDS; make clean
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
24 -$(CD) MODULES; make clean
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
25 -$(CD) BOOTFILES; make clean
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
26 -$(CD) DEFS; make clean
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
27 -$(CD) SYS; make clean
9ca004356f09 Makefiles modified
boisy
parents: 107
diff changeset
28 -$(OS92UNIX) $(ROOTOBJS)
107
5eceecf6159c Updated Makefiles with new targets
boisy
parents: 0
diff changeset
29