libtthimage/Tools/Makefile

38 lines
1.1 KiB
Makefile
Raw Normal View History

2022-06-27 00:48:18 +02:00
#-----------------------------------------------------------------
#
# Fabrication des outils - nouvelle version 26 juin 2022
#
#-----------------------------------------------------------------
include ../Paramakes.mk
DEPS = ../tthimage.h Makefile
2022-06-27 09:00:44 +02:00
all: tga_cadre tga_effects tga_filtres tga_tools \
tga_television
2022-06-27 00:48:18 +02:00
#-----------------------------------------------------------------
2022-06-27 08:53:59 +02:00
fonctions.o: fonctions.c $(DEPS)
2022-06-27 00:48:18 +02:00
gcc $(CFLAGS) -c $<
#-----------------------------------------------------------------
2022-06-27 08:53:59 +02:00
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 $@
2022-06-27 09:00:44 +02:00
tga_television: tga_television.c $(DEPS) fonctions.o
gcc $(CFLAGS) $< ../libimage.a fonctions.o -lm -o $@
2022-06-27 00:48:18 +02:00
tga_tools: tga_tools.c $(DEPS) fonctions.o
2022-06-27 08:53:59 +02:00
gcc $(CFLAGS) $< ../libimage.a fonctions.o -lm -o $@
2022-06-27 00:48:18 +02:00
#-----------------------------------------------------------------