From 43cb8eec36e6f2ab4c4b974d37a3afb400b08513 Mon Sep 17 00:00:00 2001 From: Laurent Vivier Date: Fri, 3 Dec 2004 00:30:26 +0000 Subject: [PATCH] Add blocks.c, emile.c to create emile --- tools/Makefile | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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)