commit du soir, espoir

This commit is contained in:
tonton Th
2020-04-11 23:18:33 +02:00
parent 22e16d2ba6
commit 83af701479
8 changed files with 190 additions and 25 deletions

View File

@@ -1,9 +1,10 @@
#---------------------------------------------------------------
COPT = -Wall -fpic -g -pg -no-pie -DDEBUG_LEVEL=0
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 geometry.o rotate.o \
equalize.o
#---------------------------------------------------------------
@@ -36,6 +37,9 @@ geometry.o: geometry.c $(DEPS)
rotate.o: rotate.c $(DEPS)
gcc $(COPT) -c $<
equalize.o: equalize.c $(DEPS)
gcc $(COPT) -c $<
sfx0.o: sfx0.c $(DEPS)
gcc $(COPT) -c $<