view 3rdparty/makefile @ 93:0c12245b7bdc

Fixed NitrOS-9 and OS-9 Level Two bug where Address was too far off the end of the module for the ldy <Address,pcr to work
author boisy
date Wed, 03 Jul 2002 19:19:16 +0000
parents 0f2f6f3a0113
children 5105796110bf
line wrap: on
line source

include ../Makefile.rules

# Make all components
all:
	@$(ECHO) "*********************************************"
	@$(ECHO) "*                                           *"
	@$(ECHO) "*             3rd Party Software            *"
	@$(ECHO) "*                                           *"
	@$(ECHO) "*********************************************"
	cd booters; make
	cd drivers; make
	cd fmgrs; make
	cd p2mods; make
	cd subrtns; make
	cd utils; make
	cd packages; make

# Clean all components
clean:
	-cd booters; make clean
	-cd drivers; make clean
	-cd fmgrs; make clean
	-cd p2mods; make clean
	-cd subrtns; make clean
	-cd utils; make clean
	-cd packages; make clean