not a milestone

This commit is contained in:
le vieux
2020-11-10 00:50:25 +01:00
parent 538a8ffa82
commit c3c5e0dc3f
6 changed files with 43 additions and 14 deletions

View File

@@ -7,6 +7,11 @@ LIBS = -lfloatimg -lpnglite -lm
OBJS = fonctions.o sfx.o crapulator.o
DEPS = fonctions.h crapulator.h
all: fonderie interpolator
# ---------------------------------------------------------
fonderie: fonderie.c ${DEPS} ${OBJS} Makefile
gcc ${COPT} $< ${OBJS} ${LIBS} -lz -o $@
@@ -21,9 +26,10 @@ sfx.o: sfx.c ${DEPS} Makefile
# ---------------------------------------------------------
#
# another way...
# another way to brotch some pics...
#
interpolator: interpolator.c Makefile
gcc ${COPT} $< ${LIBS} -lz -o $@
interpolator: interpolator.c ${OBJS} Makefile
gcc ${COPT} $< ${OBJS} ${LIBS} -lz -o $@
# ---------------------------------------------------------