forked from tTh/FloatImg
30 lines
682 B
Makefile
30 lines
682 B
Makefile
#
|
|
# compilation de la fonderie
|
|
#
|
|
|
|
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
|
|
|
|
fonderie: fonderie.c ${DEPS} ${OBJS} Makefile
|
|
gcc ${COPT} $< ${OBJS} ${LIBS} -lz -o $@
|
|
|
|
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 $<
|
|
|
|
# ---------------------------------------------------------
|
|
#
|
|
# another way...
|
|
|
|
interpolator: interpolator.c Makefile
|
|
gcc ${COPT} $< ${LIBS} -lz -o $@
|
|
|
|
# ---------------------------------------------------------
|