# CPU Makefile
#
# Author: Guto

include	$(EPOS)/makedefs

all: ix86

ix86: FORCE
	(cd ix86 && $(MAKE))

test: FORCE
	(cd test && $(MAKE))
	(cd ix86 && $(MAKE) test)

print: FORCE
	$(PRINT1) $(INCLUDE)/cpu.h $(INCLUDE)/system/cpu/basic.h $(PRINT2)
	(cd ix86 && $(MAKE) print)

clean: FORCE
	-(cd test && $(MAKE) clean)
	-(cd ix86 && $(MAKE) clean)

FORCE:
