20 lines
347 B
Makefile
20 lines
347 B
Makefile
#
|
|
# NC-LOOPER --- another kluge from tth
|
|
#
|
|
|
|
CC = gcc
|
|
CCOPT = -Wall -g -DDEBUG_LEVEL=0
|
|
LIBS = -lao -lsndfile -lm
|
|
|
|
ao_output.o: ao_output.c Makefile
|
|
$(CC) ${CCOPT} -c $<
|
|
|
|
playfile.o: playfile.c Makefile
|
|
$(CC) ${CCOPT} -c $<
|
|
|
|
OBJS = ao_output.o playfile.o
|
|
|
|
t: t.c ${OBJS} Makefile
|
|
$(CC) ${CCOPT} $< ${OBJS} ${LIBS} -o $@
|
|
|