EMILE/tools/Makefile

21 lines
378 B
Makefile
Raw Normal View History

2004-05-19 00:09:58 +00:00
#
#
# (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
#
#
2004-05-21 12:42:40 +00:00
PROGRAMS = emile-set-cmdline emile-first-info emile-first-tune
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 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
2004-05-19 00:09:58 +00:00
clean:
2004-05-21 12:42:40 +00:00
rm -f *.o $(PROGRAMS)