Compare commits
3 Commits
44488e03a2
...
0481c39c5e
Author | SHA1 | Date | |
---|---|---|---|
|
0481c39c5e | ||
|
e5236e0e3e | ||
|
7e7b878b30 |
@ -2,6 +2,7 @@
|
|||||||
|
|
||||||
COPT = -Wall -fpic -g -no-pie -DDEBUG_LEVEL=0
|
COPT = -Wall -fpic -g -no-pie -DDEBUG_LEVEL=0
|
||||||
DEPS = ../floatimg.h Makefile
|
DEPS = ../floatimg.h Makefile
|
||||||
|
|
||||||
OBJS = fimg-png.o fimg-tiff.o misc-plots.o filtrage.o utils.o \
|
OBJS = fimg-png.o fimg-tiff.o misc-plots.o filtrage.o utils.o \
|
||||||
fimg-libpnm.o rampes.o sfx0.o geometry.o rotate.o \
|
fimg-libpnm.o rampes.o sfx0.o geometry.o rotate.o \
|
||||||
equalize.o fimg-fits.o saturation.o histogram.o \
|
equalize.o fimg-fits.o saturation.o histogram.o \
|
||||||
@ -11,7 +12,10 @@ OBJS = fimg-png.o fimg-tiff.o misc-plots.o filtrage.o utils.o \
|
|||||||
#---------------------------------------------------------------
|
#---------------------------------------------------------------
|
||||||
|
|
||||||
t: t.c $(DEPS) ../libfloatimg.a
|
t: t.c $(DEPS) ../libfloatimg.a
|
||||||
gcc $(COPT) $< ../libfloatimg.a -lnetpbm -lpnglite -lcfitsio \
|
gcc $(COPT) $< \
|
||||||
|
-I/usr/include/netpbm/ \
|
||||||
|
-I/usr/include/cfitsio/ \
|
||||||
|
../libfloatimg.a -lnetpbm -lpnglite -lcfitsio \
|
||||||
-ltiff \
|
-ltiff \
|
||||||
-lz -lm -o $@
|
-lz -lm -o $@
|
||||||
|
|
||||||
@ -30,10 +34,10 @@ fimg-tiff.o: fimg-tiff.c $(DEPS)
|
|||||||
gcc $(COPT) -c $<
|
gcc $(COPT) -c $<
|
||||||
|
|
||||||
fimg-fits.o: fimg-fits.c $(DEPS)
|
fimg-fits.o: fimg-fits.c $(DEPS)
|
||||||
gcc $(COPT) -c $<
|
gcc $(COPT) -I/usr/include/cfitsio/ -c $<
|
||||||
|
|
||||||
fimg-libpnm.o: fimg-libpnm.c $(DEPS)
|
fimg-libpnm.o: fimg-libpnm.c $(DEPS)
|
||||||
gcc $(COPT) -c $<
|
gcc $(COPT) -I/usr/include/netpbm -c $<
|
||||||
|
|
||||||
misc-plots.o: misc-plots.c $(DEPS)
|
misc-plots.o: misc-plots.c $(DEPS)
|
||||||
gcc $(COPT) -c $<
|
gcc $(COPT) -c $<
|
||||||
|
@ -9,7 +9,7 @@
|
|||||||
|
|
||||||
#include "../floatimg.h"
|
#include "../floatimg.h"
|
||||||
|
|
||||||
int verbosity;
|
extern int verbosity;
|
||||||
|
|
||||||
/* --------------------------------------------------------------------- */
|
/* --------------------------------------------------------------------- */
|
||||||
/* nouveau 7 octobre 2020, juste avant sonoptic de la pluie craignos */
|
/* nouveau 7 octobre 2020, juste avant sonoptic de la pluie craignos */
|
||||||
|
Loading…
Reference in New Issue
Block a user