diff --git a/tools/Makefile b/tools/Makefile index b839ef9..6744020 100644 --- a/tools/Makefile +++ b/tools/Makefile @@ -5,7 +5,7 @@ # PROGRAMS = emile-set-cmdline emile-first-info emile-first-tune emile-install \ - emile-set-output + emile-set-output emile CPPFLAGS = -DSIGNATURE="\"$(SIGNATURE)\"" CFLAGS = -Wall @@ -22,5 +22,12 @@ emile-first-tune.o: emile-first-tune.c emile-first.h emile.h emile-install.o: emile-install.c emile-first.h ../second/head.h emile.h +block.o: blocks.c blocks.h ../second/head.h + +emile.o: emile.c ../second/head.h + + +emile: emile.o blocks.o + clean: rm -f *.o $(PROGRAMS)