debut de la partie son
This commit is contained in:
16
audio/Makefile
Normal file
16
audio/Makefile
Normal 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
|
||||
Reference in New Issue
Block a user