22 lines
263 B
Makefile
22 lines
263 B
Makefile
#
|
|
#
|
|
#
|
|
|
|
OBJS = lut1024f.o parseconf.o
|
|
|
|
lut1024f.o: lut1024f.c lut1024.h
|
|
gcc -Wall -c $<
|
|
|
|
|
|
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 > $@
|
|
|