NcLooper/audio/Makefile

20 lines
347 B
Makefile
Raw Normal View History

2019-12-24 03:55:31 +11:00
#
# NC-LOOPER --- another kluge from tth
#
2019-10-23 22:17:57 +11:00
CC = gcc
2019-12-24 03:55:31 +11:00
CCOPT = -Wall -g -DDEBUG_LEVEL=0
2019-10-23 22:17:57 +11:00
LIBS = -lao -lsndfile -lm
ao_output.o: ao_output.c Makefile
$(CC) ${CCOPT} -c $<
2019-10-24 03:46:27 +11:00
playfile.o: playfile.c Makefile
$(CC) ${CCOPT} -c $<
OBJS = ao_output.o playfile.o
t: t.c ${OBJS} Makefile
$(CC) ${CCOPT} $< ${OBJS} ${LIBS} -o $@
2019-10-23 22:17:57 +11:00