Bibliothèque de traitements d'images en virgule flottante.
http://la.buvette.org/photos/cumul/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
529 B
23 lines
529 B
![]()
4 years ago
|
#---------------------------------------------------------------
|
||
|
|
||
|
COPT = -Wall -fpic -g -no-pie -pg -DDEBUG_LEVEL=0
|
||
|
DEPS = ../floatimg.h Makefile
|
||
|
OBJS = fimg-png.o fimg-tiff.o misc-plots.o filtrage.o
|
||
|
|
||
|
#---------------------------------------------------------------
|
||
|
|
||
|
../libfloatimg.a: $(OBJS)
|
||
|
$(AR) r $@ $?
|
||
|
|
||
|
fimg-png.o: fimg-png.c $(DEPS)
|
||
|
gcc $(COPT) -c $<
|
||
|
|
||
|
fimg-tiff.o: fimg-tiff.c $(DEPS)
|
||
|
gcc $(COPT) -c $<
|
||
|
|
||
|
misc-plots.o: misc-plots.c $(DEPS)
|
||
|
gcc $(COPT) -c $<
|
||
|
|
||
|
filtrage.o: filtrage.c $(DEPS)
|
||
|
gcc $(COPT) -c $<
|