view level1/makefile @ 250:03a3d1620874

Cleaned up descriptor
author boisy
date Sat, 20 Jul 2002 04:15:07 +0000
parents 5eceecf6159c
children 9ca004356f09
line wrap: on
line source

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
	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