CC=../sslittle-na-sstrix/bin/gcc CFLAGS=-g -O3 all: test-jaein dep indep loopwithif loopwithoutif fpops intops fpops: fpops.c $(CC) $(CFLAGS) -o fpops fpops.c intops: intops.c $(CC) $(CFLAGS) -o intops intops.c loopwithoutif: loopwithoutif.c $(CC) $(CFLAGS) -o loopwithoutif loopwithoutif.c loopwithif: loopwithif.c $(CC) $(CFLAGS) -o loopwithif loopwithif.c indep: indep.c $(CC) $(CFLAGS) -o indep indep.c dep: dep.c $(CC) $(CFLAGS) -o dep dep.c test-jaein: test-jaein.c $(CC) $(CFLAGS) -o test-jaein test-jaein.c test: all ../simplesim-3.0/sim-safe test-jaein distclean: -make clean clean: rm -f test-jaein *.[oia] core *~