# Realization Interface Test Makefile
#
# Author: Guto

include	$(EPOS)/Makedefs

all: guest_realization_test epos_realization_test

guest_realization_test: realization_test.o
	$(GUEST_APP_LD) -o guest_realization_test realization_test.o

epos_realization_test: realization_test.o
	$(APP_LD) -o epos_realization_test realization_test.o

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

print:
	$(PRINT1) $(INCLUDE)/realization.h realization_test.cc $(PRINT2)

clean:
	$(CLEAN) *.o *_realization_test
