three more tools compiled

This commit is contained in:
tth
2022-06-27 08:53:59 +02:00
parent 0175102393
commit cfe308968f
15 changed files with 1279 additions and 22 deletions

View File

@@ -8,17 +8,26 @@ include ../Paramakes.mk
DEPS = ../tthimage.h Makefile
all: tga_tools
all: tga_cadre tga_effects tga_filtres tga_tools
#-----------------------------------------------------------------
fonctions.o: fonctions.c
fonctions.o: fonctions.c $(DEPS)
gcc $(CFLAGS) -c $<
#-----------------------------------------------------------------
tga_cadre: tga_cadre.c $(DEPS) fonctions.o
gcc $(CFLAGS) $< ../libimage.a fonctions.o -lm -o $@
tga_effects: tga_effects.c $(DEPS) fonctions.o
gcc $(CFLAGS) $< ../libimage.a fonctions.o -lm -o $@
tga_filtres: tga_filtres.c $(DEPS) fonctions.o
gcc $(CFLAGS) $< ../libimage.a fonctions.o -lm -o $@
tga_tools: tga_tools.c $(DEPS) fonctions.o
gcc $(CFLAGS) $< ../libimage.a fonctions.o -o $@
gcc $(CFLAGS) $< ../libimage.a fonctions.o -lm -o $@
#-----------------------------------------------------------------