the great code shaking party

This commit is contained in:
tth
2022-06-26 12:22:12 +02:00
parent ecd0186b28
commit 75a06cf5b4
102 changed files with 65 additions and 0 deletions

23
Lib/Makefile Normal file
View File

@@ -0,0 +1,23 @@
#-----------------------------------------------------------------
#
#
#
#-----------------------------------------------------------------
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 $@
#-----------------------------------------------------------------