added a new function : fimg_rotate_90, need more tests

This commit is contained in:
tonton Th
2020-03-24 09:31:52 +01:00
parent 394b24bc92
commit e9a61bb96a
6 changed files with 125 additions and 11 deletions

View File

@@ -3,7 +3,7 @@
COPT = -Wall -fpic -g -pg -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
fimg-libpnm.o rampes.o sfx0.o geometry.o rotate.o
#---------------------------------------------------------------
@@ -33,6 +33,9 @@ filtrage.o: filtrage.c $(DEPS)
geometry.o: geometry.c $(DEPS)
gcc $(COPT) -c $<
rotate.o: rotate.c $(DEPS)
gcc $(COPT) -DDEBUG_LEVEL=1 -c $<
sfx0.o: sfx0.c $(DEPS)
gcc $(COPT) -c $<