15 lines
379 B
Makefile
15 lines
379 B
Makefile
#-----------------------------------------------------------------
|
|
|
|
include ../Paramakes.mk
|
|
|
|
DEPS = ../tthimage.h ../Paramakes.mk Makefile
|
|
|
|
all: t_t16x24
|
|
|
|
#-----------------------------------------------------------------
|
|
|
|
t_t16x24: t_t16x24.c $(DEPS) ../libtthimage.a
|
|
gcc $(CFLAGS) $< ../libtthimage.a -o $@
|
|
|
|
#-----------------------------------------------------------------
|