all: testsim testfloatsim testdelay testfloatdelay

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

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

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

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

.o:

clean: 
        rm -f build.o testload.o run* test*sim test*delay inal
