summaryrefslogtreecommitdiff
path: root/tests/test5/Makefile
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2012-06-06 21:42:40 +0000
committerLudovic Pouzenc <ludovic@pouzenc.fr>2012-06-06 21:42:40 +0000
commit438cfc61ee3fae8875dbbf24a44fa7d75969f2b3 (patch)
treecae20abd8ebd251dc972886340d74a1763ca94ae /tests/test5/Makefile
parent5b385abef33b20c122bddf9cc9e947594e0ebd32 (diff)
download2012-violon-leds-438cfc61ee3fae8875dbbf24a44fa7d75969f2b3.tar.gz
2012-violon-leds-438cfc61ee3fae8875dbbf24a44fa7d75969f2b3.tar.bz2
2012-violon-leds-438cfc61ee3fae8875dbbf24a44fa7d75969f2b3.zip
Ajout Makefile, résolution crash malloc (tableau statique à la place).
Données audio 2 channels : apparament avec un offset style [i*nchan] on obtient bcp de valeurs à 0... FFT : valeurs en sortie toutes pétées, faut débugguer. Conso CPU : correcte git-svn-id: file:///var/svn/2012-violon-leds/trunk@13 6be1fa4d-33ac-4c33-becc-79fcb3794bb6
Diffstat (limited to 'tests/test5/Makefile')
-rw-r--r--tests/test5/Makefile29
1 files changed, 29 insertions, 0 deletions
diff --git a/tests/test5/Makefile b/tests/test5/Makefile
new file mode 100644
index 0000000..8d5e47b
--- /dev/null
+++ b/tests/test5/Makefile
@@ -0,0 +1,29 @@
+CC=gcc
+CFLAGS=-W -Wall -Werror -Wno-error=unused-parameter -g
+LDFLAGS=-Werror -g
+EXEC=test5
+
+CFLAGS+=$(shell pkg-config --cflags gtk+-2.0 gthread-2.0 libpulse)
+LDFLAGS+=$(shell pkg-config --libs gtk+-2.0 gthread-2.0 libpulse)
+
+SRC= $(wildcard *.c)
+OBJ= $(SRC:.c=.o)
+
+all: $(EXEC)
+
+$(EXEC): $(OBJ)
+ $(CC) -o $@ $^ $(LDFLAGS)
+
+#main.o: hello.h
+
+%.o: %.c
+ $(CC) -o $@ -c $< $(CFLAGS)
+
+.PHONY: clean mrproper
+
+clean:
+ rm *.o
+
+mrproper: clean
+ rm $(EXEC)
+