mirror of
https://github.com/vivier/EMILE.git
synced 2024-12-22 10:29:31 +00:00
21 lines
378 B
Makefile
21 lines
378 B
Makefile
#
|
|
#
|
|
# (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
#
|
|
#
|
|
|
|
PROGRAMS = emile-set-cmdline emile-first-info emile-first-tune
|
|
|
|
CFLAGS = -Wall
|
|
|
|
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
|
|
|
|
emile-first-tune.o: emile-first-tune.c emile-first.h emile.h
|
|
|
|
clean:
|
|
rm -f *.o $(PROGRAMS)
|