a new sfx func is born

This commit is contained in:
tth
2021-03-20 19:47:42 +01:00
parent 0aba64181c
commit 64c1383283
6 changed files with 158 additions and 4 deletions

View File

@@ -4,7 +4,8 @@ COPT = -Wall -fpic -g -no-pie -DDEBUG_LEVEL=0
DEPS = ../floatimg.h Makefile
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 sfx1.o \
geometry.o rotate.o \
equalize.o fimg-fits.o saturation.o histogram.o \
hsv.o classif.o contour2x2.o qsortrgb.o exporter.o \
displacement.o dithering.o plasmas.o
@@ -77,6 +78,9 @@ plasmas.o: plasmas.c $(DEPS)
sfx0.o: sfx0.c $(DEPS)
gcc $(COPT) -c $<
sfx1.o: sfx1.c $(DEPS)
gcc $(COPT) -c $<
contour2x2.o: contour2x2.c $(DEPS)
gcc $(COPT) -c $<