libtthimage/Lib/Makefile

24 lines
539 B
Makefile

#-----------------------------------------------------------------
#
#
#
#-----------------------------------------------------------------
include ../Paramakes.mk
DEPS = ../tthimage.h Makefile
#-----------------------------------------------------------------
image.o: image.c $(DEPS)
msglib.o: msglib.c $(DEPS)
#-----------------------------------------------------------------
foo: foo.c $(DEPS) image.o msglib.o
gcc $(CFLAGS) $< image.o msglib.o -o $@
#-----------------------------------------------------------------