FloatImg/funcs/Makefile

87 lines
1.7 KiB
Makefile
Raw Normal View History

2019-03-04 02:22:55 +11:00
#---------------------------------------------------------------
2020-04-12 08:18:33 +11:00
COPT = -Wall -fpic -g -no-pie -DDEBUG_LEVEL=0
2019-03-04 02:22:55 +11:00
DEPS = ../floatimg.h Makefile
2019-09-13 04:48:12 +11:00
OBJS = fimg-png.o fimg-tiff.o misc-plots.o filtrage.o utils.o \
2020-04-12 08:18:33 +11:00
fimg-libpnm.o rampes.o sfx0.o geometry.o rotate.o \
2020-09-09 07:55:17 +11:00
equalize.o fimg-fits.o saturation.o histogram.o \
2020-10-27 02:45:36 +11:00
hsv.o classif.o contour2x2.o qsortrgb.o exporter.o \
2020-10-30 23:14:23 +11:00
displacement.o dithering.o
2019-09-13 04:48:12 +11:00
#---------------------------------------------------------------
t: t.c $(DEPS) ../libfloatimg.a
2020-08-22 11:16:13 +11:00
gcc $(COPT) $< ../libfloatimg.a -lnetpbm -lpnglite -lcfitsio \
-ltiff \
2020-07-24 19:38:13 +11:00
-lz -lm -o $@
2019-03-04 02:22:55 +11:00
#---------------------------------------------------------------
../libfloatimg.a: $(OBJS)
$(AR) r $@ $?
2020-10-27 02:45:36 +11:00
displacement.o: displacement.c
gcc $(COPT) -c $<
2019-03-04 02:22:55 +11:00
fimg-png.o: fimg-png.c $(DEPS)
gcc $(COPT) -c $<
fimg-tiff.o: fimg-tiff.c $(DEPS)
gcc $(COPT) -c $<
2020-07-24 19:38:13 +11:00
fimg-fits.o: fimg-fits.c $(DEPS)
gcc $(COPT) -c $<
2019-09-13 04:48:12 +11:00
fimg-libpnm.o: fimg-libpnm.c $(DEPS)
gcc $(COPT) -c $<
2019-03-04 02:22:55 +11:00
misc-plots.o: misc-plots.c $(DEPS)
gcc $(COPT) -c $<
filtrage.o: filtrage.c $(DEPS)
gcc $(COPT) -c $<
2019-08-29 06:08:59 +11:00
2020-02-14 06:44:22 +11:00
geometry.o: geometry.c $(DEPS)
gcc $(COPT) -c $<
rotate.o: rotate.c $(DEPS)
2020-03-26 19:12:25 +11:00
gcc $(COPT) -c $<
2020-07-28 17:19:38 +11:00
saturation.o: saturation.c $(DEPS)
gcc $(COPT) -c $<
2020-09-03 10:37:53 +11:00
histogram.o: histogram.c $(DEPS)
gcc $(COPT) -c $<
2020-04-12 08:18:33 +11:00
equalize.o: equalize.c $(DEPS)
gcc $(COPT) -c $<
2020-10-30 23:14:23 +11:00
dithering.o: dithering.c $(DEPS)
gcc $(COPT) -c $<
2020-02-08 04:01:28 +11:00
sfx0.o: sfx0.c $(DEPS)
gcc $(COPT) -c $<
2020-10-07 20:32:23 +11:00
contour2x2.o: contour2x2.c $(DEPS)
gcc $(COPT) -c $<
2020-01-04 01:39:11 +11:00
rampes.o: rampes.c $(DEPS)
gcc $(COPT) -c $<
2020-10-04 22:05:28 +11:00
classif.o: classif.c $(DEPS)
gcc $(COPT) -c $<
2020-10-08 20:24:29 +11:00
qsortrgb.o: qsortrgb.c $(DEPS)
gcc $(COPT) -c $<
2020-10-16 20:20:10 +11:00
exporter.o: exporter.c $(DEPS)
gcc $(COPT) -c $<
2020-10-08 20:24:29 +11:00
2020-09-09 07:55:17 +11:00
hsv.o: hsv.c $(DEPS)
gcc $(COPT) -c $<
2019-08-29 06:08:59 +11:00
utils.o: utils.c $(DEPS)
gcc $(COPT) -c $<