splitting test proggy

This commit is contained in:
tth
2021-01-31 15:36:03 +01:00
parent 4a412b97fe
commit 445ecf3600
4 changed files with 656 additions and 605 deletions

View File

@@ -11,8 +11,12 @@ OBJS = fimg-png.o fimg-tiff.o misc-plots.o filtrage.o utils.o \
#---------------------------------------------------------------
t: t.c $(DEPS) ../libfloatimg.a
tests.o: tests.c tests.h $(DEPS)
gcc $(COPT) -c $<
t: t.c $(DEPS) ../libfloatimg.a tests.o
gcc $(COPT) $< \
tests.o \
-I/usr/include/netpbm/ \
-I/usr/include/cfitsio/ \
../libfloatimg.a -lnetpbm -lpnglite -lcfitsio \