12 lines
217 B
Makefile
12 lines
217 B
Makefile
|
|
||
|
CC = gcc
|
||
|
CCOPT = -Wall -g -DDEBUG_LEVEL=1
|
||
|
LIBS = -lao -lsndfile -lm
|
||
|
|
||
|
ao_output.o: ao_output.c Makefile
|
||
|
$(CC) ${CCOPT} -c $<
|
||
|
|
||
|
t: t.c ao_output.o Makefile
|
||
|
$(CC) ${CCOPT} $< ao_output.o ${LIBS} -o $@
|
||
|
|