mirror of
https://github.com/vivier/EMILE.git
synced 2024-11-13 15:05:05 +00:00
23 lines
478 B
Makefile
23 lines
478 B
Makefile
#
|
|
#
|
|
# (c) 2004 Laurent Vivier <LaurentVivier@wanadoo.fr>
|
|
#
|
|
#
|
|
|
|
PROGRAMS = emile-set-cmdline emile-first-info emile-first-tune emile-install
|
|
|
|
CFLAGS = -Wall
|
|
|
|
all: $(PROGRAMS)
|
|
|
|
emile-set-cmdline.o: emile-set-cmdline.c emile-first.h emile-second.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 emile-second.h emile.h
|
|
|
|
clean:
|
|
rm -f *.o $(PROGRAMS)
|