all: testsim testfloatsim testdelay testfloatdelay

testsim:	build.c ../../lib/sim.o
	../../bin/makesim -ng build.c -o testsim

testfloatsim:	build.c ../../lib/simf.o
	../../bin/makesim -ng -f build.c -o testfloatsim

testdelay:	build.c ../../lib/tsim.o
	../../bin/makesim -t -ng build.c -o testdelay

testfloatdelay:	build.c ../../lib/tsimf.o
	../../bin/makesim -f -t -ng build.c -o testfloatdelay

.o:

clean: tidy
	rm -f *.o run*.cmd test*sim test*delay gi.log

tidy:
	rm -f *~ \#*
