importing the exporter :)

This commit is contained in:
tth
2022-06-28 21:28:22 +02:00
parent c87f70c5f2
commit 81611a3491
7 changed files with 223 additions and 5 deletions

View File

@@ -10,7 +10,7 @@ DEPS = ../tthimage.h Makefile tga_outils.h ../libtthimage.a
all: genplot2 \
tga_cadre tga_effects tga_filtres tga_remap tga_tools \
tga_combine \
tga_combine tga_export \
tga_television tga_dither tga_applymap tga_makehf15 \
tga_mires tga_incrust tga_pattern tga_equalize
@@ -37,6 +37,9 @@ tga_cadre: tga_cadre.c $(DEPS) fonctions.o
tga_combine: tga_combine.c $(DEPS) fonctions.o
gcc $(CFLAGS) $< ../libtthimage.a fonctions.o -lm -o $@
tga_export: tga_export.c $(DEPS) fonctions.o
gcc $(CFLAGS) $< ../libtthimage.a fonctions.o -lm -o $@
tga_dither: tga_dither.c $(DEPS) fonctions.o
gcc $(CFLAGS) $< ../libtthimage.a fonctions.o -lm -o $@