# (C) 2009 DJG: University of Cambridge, SoC D/M.
#
# class3 Makefile
#



include ../../../Makefile.inc

all: 
	echo "Please enter make target where target is one of single, dual or nonsysc"
# 
# dual  single  nonsysc



single:rtl-onecpucore.cpp 
	$(CXX) $(INCLUDES) rtl-onecpucore.cpp $(LDFLAGS)
	LD_LIBRARY_PATH=$(SCLIB) ./a.out

dual:rtl-twocpucores.cpp 
	$(CXX) $(INCLUDES) rtl-twocpucores.cpp $(LDFLAGS)
	LD_LIBRARY_PATH=$(SCLIB) ./a.out


nonsysc:nonsyscmain.cpp 
	$(CXX) $(INCLUDES) nonsyscmain.cpp
	LD_LIBRARY_PATH=$(SCLIB) ./a.out

clean:
	rm -f a.out

#eof
