2.5 tools added...

This commit is contained in:
tth
2022-06-28 10:46:14 +02:00
parent 99c3ee1166
commit 2c8798e96e
5 changed files with 444 additions and 4 deletions

View File

@@ -8,9 +8,12 @@ include ../Paramakes.mk
DEPS = ../tthimage.h Makefile tga_outils.h
all: tga_cadre tga_effects tga_filtres tga_remap tga_tools \
all: genplot2 \
tga_cadre tga_effects tga_filtres tga_remap tga_tools \
tga_television tga_dither tga_applymap tga_makehf15 \
tga_mires
tga_mires tga_incrust tga_pattern
# 'tga_info.c' do not compile yet
#-----------------------------------------------------------------
@@ -54,5 +57,14 @@ tga_television: tga_television.c $(DEPS) fonctions.o
tga_tools: tga_tools.c $(DEPS) fonctions.o
gcc $(CFLAGS) $< ../libimage.a fonctions.o -lm -o $@
tga_incrust: tga_incrust.c $(DEPS) fonctions.o
gcc $(CFLAGS) $< ../libimage.a fonctions.o -lm -o $@
# tga_info: tga_info.c $(DEPS) fonctions.o
# gcc $(CFLAGS) $< ../libimage.a fonctions.o -lm -o $@
tga_pattern: tga_pattern.c $(DEPS) fonctions.o
gcc $(CFLAGS) $< ../libimage.a fonctions.o -lm -o $@
#-----------------------------------------------------------------