# Tripoteca 2019 - blaster.c # OBJS = incfiles.o functions.o DEPS = metrics.h COPT = -Wall -DDEBUG_LEVEL=0 # ----------------------------------------------- blaster: blaster.c Makefile ${DEPS} ${OBJS} gcc ${COPT} $< ${OBJS} -lsndfile -lm -o $@ n-pistes: n-pistes.c functions.o Makefile gcc ${COPT} $< functions.o -lsndfile -o n-pistes downmixer: downmixer.c Makefile functions.o gcc ${COPT} $< functions.o -lsndfile -o $@ # ----------------------------------------------- incfiles.o: incfiles.c incfiles.h Makefile gcc ${COPT} -c $< functions.o: functions.c functions.h ${DEPS} Makefile gcc ${COPT} -c $< metrics.o: metrics.c ${DEPS} Makefile gcc ${COPT} -c $< # -----------------------------------------------