two nice bw sweeepsss

This commit is contained in:
tonton Th
2020-01-03 15:39:11 +01:00
parent 46cd82f3b5
commit 360459d938
3 changed files with 88 additions and 3 deletions

View File

@@ -1,9 +1,9 @@
#---------------------------------------------------------------
COPT = -Wall -fpic -g -no-pie -DDEBUG_LEVEL=0
COPT = -Wall -fpic -g -no-pie -DDEBUG_LEVEL=1
DEPS = ../floatimg.h Makefile
OBJS = fimg-png.o fimg-tiff.o misc-plots.o filtrage.o utils.o \
fimg-libpnm.o
fimg-libpnm.o rampes.o
#---------------------------------------------------------------
@@ -30,5 +30,8 @@ misc-plots.o: misc-plots.c $(DEPS)
filtrage.o: filtrage.c $(DEPS)
gcc $(COPT) -c $<
rampes.o: rampes.c $(DEPS)
gcc $(COPT) -c $<
utils.o: utils.c $(DEPS)
gcc $(COPT) -c $<