view level1/makefile @ 16:4d7347bc9748

This is the first cut of the OS-9 Operating System: System Programmer's Manual in Docbook format. There is still a lot to do.
author roug
date Fri, 05 Apr 2002 22:05:31 +0000
parents 6641a883d6b0
children 5eceecf6159c
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

# Clean all components
clean:
	-cd CMDS; make clean
	-cd MODULES; make clean
	-cd BOOTFILES; make clean