NcLooper/audio/Makefile

20 lines
347 B
Makefile
Raw Permalink Normal View History

2019-12-23 17:55:31 +01:00
#
# NC-LOOPER --- another kluge from tth
#
2019-10-23 13:17:57 +02:00
CC = gcc
2019-12-23 17:55:31 +01:00
CCOPT = -Wall -g -DDEBUG_LEVEL=0
2019-10-23 13:17:57 +02:00
LIBS = -lao -lsndfile -lm
ao_output.o: ao_output.c Makefile
$(CC) ${CCOPT} -c $<
2019-10-23 18:46:27 +02: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 13:17:57 +02:00