omg ! a new tool !

This commit is contained in:
le vieux
2021-02-26 22:32:42 +01:00
parent 0208ee3b2d
commit 69d94f59d3
3 changed files with 129 additions and 2 deletions

View File

@@ -8,8 +8,8 @@ DEPS = ../floatimg.h ../libfloatimg.a Makefile
# ----------
all: fimg2pnm mkfimg png2fimg fimgstats fimg2png \
fimg2tiff \
all: fimg2pnm mkfimg png2fimg fimgstats fimg2png \
fimg2tiff fimg2text \
addpnm2fimg cumulfimgs fimgops fimgfx
fimgstats: fimgstats.c $(DEPS)
@@ -33,6 +33,9 @@ fimg2pnm: fimg2pnm.c $(DEPS)
fimg2png: fimg2png.c $(DEPS)
gcc $(COPT) $< ../libfloatimg.a -lpnglite -lz -o $@
fimg2text: fimg2text.c $(DEPS)
gcc $(COPT) $< ../libfloatimg.a -o $@
fimg2tiff: fimg2tiff.c $(DEPS)
gcc $(COPT) $< ../libfloatimg.a -ltiff -o $@