adding a new tool : fimgops

This commit is contained in:
2019-09-11 07:43:08 +02:00
parent 0eff0039eb
commit 9f42b813e7
3 changed files with 86 additions and 1 deletions

View File

@@ -9,7 +9,7 @@ DEPS = ../floatimg.h ../libfloatimg.a Makefile
# ----------
all: fimg2pnm mkfimg png2fimg fimgstats fimg2png \
addpnm2fimg cumulfimgs
addpnm2fimg cumulfimgs fimgops
fimgstats: fimgstats.c $(DEPS)
gcc $(COPT) $< ../libfloatimg.a -o $@
@@ -20,6 +20,9 @@ cumulfimgs: cumulfimgs.c $(DEPS)
mkfimg: mkfimg.c $(DEPS)
gcc $(COPT) $< ../libfloatimg.a -o $@
fimgops: fimgops.c $(DEPS)
gcc $(COPT) $< ../libfloatimg.a -o $@
fimg2pnm: fimg2pnm.c $(DEPS)
gcc $(COPT) $< ../libfloatimg.a -o $@