mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-13 15:05:05 +00:00
34 lines
738 B
Makefile
34 lines
738 B
Makefile
#
|
|
#
|
|
# (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
#
|
|
#
|
|
|
|
PROGRAMS = emile-set-cmdline emile-first-info emile-first-tune emile-install \
|
|
emile-set-output emile
|
|
|
|
CPPFLAGS = -DSIGNATURE="\"$(SIGNATURE)\""
|
|
CFLAGS = -Wall
|
|
|
|
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
|
|
|
|
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)
|