first beep
This commit is contained in:
11
audio/Makefile
Normal file
11
audio/Makefile
Normal file
@@ -0,0 +1,11 @@
|
||||
|
||||
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 $@
|
||||
|
||||
Reference in New Issue
Block a user