debut de la partie son

This commit is contained in:
phyto
2019-04-13 11:43:33 +02:00
parent f7db16548d
commit 6bbeb33d25
4 changed files with 140 additions and 0 deletions

16
audio/Makefile Normal file
View File

@@ -0,0 +1,16 @@
#
# audio part of the phytotron
#
CC = gcc
CCOPT = -Wall -g -DDEBUG_LEVEL=1
LIBS = -lao -lsndfile -lm
player.o: player.c Makefile
$(CC) ${CCOPT} -c $<
t.o: t.c player.h Makefile
$(CC) ${CCOPT} -c $<
t: player.o t.o Makefile
$(CC) t.o player.o ${LIBS} -o t