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.
66 lines
1.6 KiB
66 lines
1.6 KiB
# |
|
# compilation de la fonderie, du crapulator |
|
# et de tout le crap... |
|
# |
|
|
|
COPT = -g -fpic -no-pie -Wall -DDEBUG_LEVEL=0 -Werror=parentheses |
|
LIBS = ../libfloatimg.a -lpnglite -lm -lz |
|
|
|
OBJS = fonctions.o sfx.o crapulator.o glitches.o metriques.o \ |
|
filterstack.o |
|
|
|
DEPS = fonctions.h crapulator.h metriques.h glitches.h sfx.h \ |
|
filterstack.h crapdef.h crapstr.h |
|
|
|
all: fonderie interpolator t |
|
|
|
# --------------------------------------------------------- |
|
|
|
t: t.c Makefile ${OBJS} |
|
gcc ${COPT} $< ${OBJS} ${LIBS} -o $@ |
|
|
|
# --------------------------------------------------------- |
|
# |
|
# the two main programms |
|
# |
|
|
|
fonderie: fonderie.c ${DEPS} ${OBJS} Makefile |
|
gcc ${COPT} $< ${OBJS} ${LIBS} -lz -o $@ |
|
|
|
# another way to brotch some pics... |
|
interpolator: interpolator.c ${DEPS} ${OBJS} Makefile |
|
gcc ${COPT} $< ${OBJS} ${LIBS} -lz -o $@ |
|
|
|
# --------------------------------------------------------- |
|
# |
|
# some files are generated, sorry. |
|
# |
|
crapdef.h: crapulors.liste Makefile craplist2h.awk |
|
./craplist2h.awk < $< | tee $@ |
|
|
|
crapstr.h: crapulors.liste Makefile craplist2str.awk |
|
./craplist2str.awk < $< | tee $@ |
|
|
|
# --------------------------------------------------------- |
|
# |
|
# a lot of silly functions |
|
# |
|
crapulator.o: crapulator.c ${DEPS} Makefile |
|
gcc ${COPT} -c $< |
|
|
|
fonctions.o: fonctions.c fonctions.h Makefile |
|
gcc ${COPT} -c $< |
|
|
|
sfx.o: sfx.c ${DEPS} Makefile |
|
gcc ${COPT} -c $< |
|
|
|
filterstack.o: filterstack.c ${DEPS} Makefile |
|
gcc ${COPT} -c $< |
|
|
|
metriques.o: metriques.c metriques.h Makefile |
|
gcc ${COPT} -c $< |
|
|
|
glitches.o: glitches.c glitches.h Makefile |
|
gcc ${COPT} -c $< |
|
|
|
# ---------------------------------------------------------
|
|
|