EMILE/tools/Makefile

34 lines
738 B
Makefile
Raw Normal View History

2004-05-19 00:09:58 +00:00
#
#
# (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
#
#
PROGRAMS = emile-set-cmdline emile-first-info emile-first-tune emile-install \
2004-12-03 00:30:26 +00:00
emile-set-output emile
2004-05-21 12:42:40 +00:00
2004-06-03 11:09:28 +00:00
CPPFLAGS = -DSIGNATURE="\"$(SIGNATURE)\""
2004-05-19 00:09:58 +00:00
CFLAGS = -Wall
2004-05-21 12:42:40 +00:00
all: $(PROGRAMS)
emile-set-cmdline.o: emile-set-cmdline.c emile-first.h ../second/head.h emile.h
emile-set-output.o: emile-set-output.c emile-first.h ../second/head.h emile.h
emile-first-info.o: emile-first-info.c emile-first.h emile.h
2004-05-19 00:09:58 +00:00
emile-first-tune.o: emile-first-tune.c emile-first.h emile.h
2004-05-21 12:42:40 +00:00
emile-install.o: emile-install.c emile-first.h ../second/head.h emile.h
2004-06-01 21:56:44 +00:00
2004-12-03 00:30:26 +00:00
block.o: blocks.c blocks.h ../second/head.h
emile.o: emile.c ../second/head.h
emile: emile.o blocks.o
2004-05-19 00:09:58 +00:00
clean:
2004-05-21 12:42:40 +00:00
rm -f *.o $(PROGRAMS)