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.
34 lines
1.0 KiB
34 lines
1.0 KiB
#################################################### |
|
# Before running make, you must have # |
|
# a look to the 'build.sh' script ! # |
|
#################################################### |
|
|
|
COPT = -Wall -fpic -g -pg -no-pie -DDEBUG_LEVEL=0 |
|
LDOPT = libfloatimg.a -pg -lm |
|
|
|
all: essai |
|
|
|
#--------------------------------------------------------------- |
|
|
|
essai: essai.c libfloatimg.a floatimg.h Makefile |
|
gcc $(COPT) $< $(LDOPT) -lpnglite -lz -o $@ |
|
|
|
#--------------------------------------------------------------- |
|
|
|
TOTAR = *.[ch] Makefile *.sh *.md \ |
|
doc/the*.tex doc/mk*.sh doc/*.txt \ |
|
funcs/*.[ch] funcs/Makefile \ |
|
tools/*.[ch] tools/*.sh tools/README.md tools/Makefile \ |
|
v4l2/*.[ch] v4l2/Makefile \ |
|
scripts/*.sh scripts/README.md \ |
|
lib/*.[ch] lib/Makefile |
|
|
|
lines: $(TOTAR) |
|
@wc $(TOTAR) | sort -n |
|
|
|
tarball: $(TOTAR) |
|
date > tarball |
|
ls $(TOTAR) | sed 's/^/FloatImg\//' > MANIFEST |
|
( cd .. ; tar zcvf floatimg.tar.gz `cat FloatImg/MANIFEST` ) |
|
|
|
#---------------------------------------------------------------
|
|
|