FloatImg/Makefile

34 lines
983 B
Makefile
Raw Normal View History

2019-04-03 12:09:04 +02:00
####################################################
# Before running make, you must have #
# a look to the 'build.sh' script ! #
####################################################
2019-03-03 16:22:55 +01:00
COPT = -Wall -fpic -g -pg -DDEBUG_LEVEL=0
LDOPT = libfloatimg.a -pg -lm
all: essai
#---------------------------------------------------------------
essai: essai.c libfloatimg.a floatimg.h Makefile
gcc $(COPT) $< $(LDOPT) -lpnglite -o $@
#---------------------------------------------------------------
2019-08-07 17:14:58 +02:00
TOTAR = *.[ch] Makefile *.sh *.txt \
doc/*.tex doc/mkdoc.sh \
2019-03-03 16:22:55 +01:00
funcs/*.[ch] funcs/Makefile \
tools/*.[ch] tools/Makefile \
2019-07-28 01:00:12 +02:00
v4l2/*.[ch] v4l2/Makefile \
2019-03-03 16:22:55 +01:00
lib/*.[ch] lib/Makefile
lines: $(TOTAR)
@wc $(TOTAR) | sort -n
tarball: $(TOTAR)
date > tarball
2019-07-28 01:00:12 +02:00
ls $(TOTAR) | sed 's/^/FloatImg\//' > MANIFEST
( cd .. ; tar zcvf floatimg.tar.gz `cat FloatImg/MANIFEST` )
2019-03-03 16:22:55 +01:00
#---------------------------------------------------------------