#################################################### # 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 -o $@ #--------------------------------------------------------------- TOTAR = *.[ch] Makefile *.sh *.txt \ doc/*.tex doc/mkdoc.sh \ funcs/*.[ch] funcs/Makefile \ tools/*.[ch] tools/Makefile \ v4l2/*.[ch] v4l2/Makefile \ 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` ) #---------------------------------------------------------------