tryng to really glitch my picz

This commit is contained in:
le vieux
2020-11-10 03:58:18 +01:00
parent 905c61628f
commit e7c726320a
6 changed files with 99 additions and 10 deletions

View File

@@ -4,8 +4,9 @@
COPT = -g -no-pie -Wall -DDEBUG_LEVEL=0 -Werror=parentheses
LIBS = -lfloatimg -lpnglite -lm
OBJS = fonctions.o sfx.o crapulator.o
DEPS = fonctions.h crapulator.h
OBJS = fonctions.o sfx.o crapulator.o glitches.o metriques.o
DEPS = fonctions.h crapulator.h metriques.h glitches.h
all: fonderie interpolator
@@ -29,7 +30,13 @@ sfx.o: sfx.c ${DEPS} Makefile
# another way to brotch some pics...
#
interpolator: interpolator.c ${OBJS} Makefile
metriques.o: metriques.[hc] Makefile
gcc ${COPT} -c $<
glitches.o: glitches.[hc] Makefile
gcc ${COPT} -c $<
interpolator: interpolator.c ${OBJS} Makefile
gcc ${COPT} $< ${OBJS} ${LIBS} -lz -o $@
# ---------------------------------------------------------