# CPU_Timer Test Makefile
#
# Author: Guto

include	$(EPOS)/Makedefs

all: guest_cpu_timer_test epos_cpu_timer_test 

guest_cpu_timer_test: cpu_timer_test.o
	$(GUEST_APP_LD) -o guest_cpu_timer_test cpu_timer_test.o

epos_cpu_timer_test: cpu_timer_test.o
	$(APP_LD) -o epos_cpu_timer_test cpu_timer_test.o

cpu_timer_test.o: cpu_timer_test.cc
	$(APP_CCC) cpu_timer_test.cc

print:
	$(PRINT1) $(INCLUDE)/cpu_timer.h cpu_timer_test.cc $(PRINT2)

clean:
	$(CLEAN) *.o *_cpu_timer_test
