first beep

This commit is contained in:
2019-10-23 13:17:57 +02:00
parent bcc6295925
commit 2e538157c5
5 changed files with 146 additions and 0 deletions

11
audio/Makefile Normal file
View 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 $@