preparation de la lecture du fichier de conf

This commit is contained in:
2019-01-17 09:07:47 +01:00
parent 2f2bfa641a
commit abdfc44cbe
6 changed files with 144 additions and 12 deletions

View File

@@ -2,11 +2,19 @@
#
#
OBJS = lut1024f.o parseconf.o
lut1024f.o: lut1024f.c lut1024.h
gcc -Wall -c $<
t: t.c lut1024f.o lut1024.h
gcc -Wall $< lut1024f.o -o $@
parseconf.o: parseconf.c config.h
gcc -Wall -c $<
t: t.c ${OBJS} lut1024.h config.h
gcc -Wall $< ${OBJS} -o $@
foo.lut1024f: mklut.pl Makefile
./mklut.pl quux > $@