more experiment...

This commit is contained in:
2020-12-08 15:51:07 +01:00
parent ae7fdd49bc
commit b03e674056
8 changed files with 32 additions and 19 deletions

View File

@@ -20,11 +20,18 @@ t: t.c Makefile ${OBJS}
gcc ${COPT} $< ${OBJS} ${LIBS} -o $@
# ---------------------------------------------------------
#
#
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 $@
# ---------------------------------------------------------
crapulator.o: crapulator.c ${DEPS} Makefile
gcc ${COPT} -c $<
@@ -37,18 +44,10 @@ sfx.o: sfx.c ${DEPS} Makefile
filterstack.o: filterstack.c ${DEPS} Makefile
gcc ${COPT} -c $<
# ---------------------------------------------------------
#
# another way to brotch some pics...
#
metriques.o: metriques.c metriques.h Makefile
gcc ${COPT} -c $<
glitches.o: glitches.c glitches.h Makefile
gcc ${COPT} -c $<
interpolator: interpolator.c ${DEPS} ${OBJS} Makefile
gcc ${COPT} $< ${OBJS} ${LIBS} -lz -o $@
# ---------------------------------------------------------