this is romulian saturation control

This commit is contained in:
2020-07-28 08:19:38 +02:00
parent fd10739cc7
commit 4fec59ec64
3 changed files with 54 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ 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 \
equalize.o fimg-fits.o
equalize.o fimg-fits.o saturation.o
#---------------------------------------------------------------
@@ -41,6 +41,9 @@ geometry.o: geometry.c $(DEPS)
rotate.o: rotate.c $(DEPS)
gcc $(COPT) -c $<
saturation.o: saturation.c $(DEPS)
gcc $(COPT) -c $<
equalize.o: equalize.c $(DEPS)
gcc $(COPT) -c $<