summaryrefslogtreecommitdiff
path: root/tests/test7/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test7/Makefile')
-rw-r--r--tests/test7/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/test7/Makefile b/tests/test7/Makefile
new file mode 100644
index 0000000..04be49c
--- /dev/null
+++ b/tests/test7/Makefile
@@ -0,0 +1,33 @@
+CC=gcc
+GTKBC=gtk-builder-convert
+CFLAGS=-W -Wall -Werror -Wno-error=unused-parameter -g
+LDFLAGS=-export-dynamic -Werror -g
+EXEC=test7
+
+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)
+
+#test7.c: win_main.xml
+
+%.xml: %.glade
+ $(GTKBC) $< $@
+
+%.o: %.c
+ $(CC) -o $@ -c $< $(CFLAGS)
+
+.PHONY: clean mrproper
+
+clean:
+ rm *.o *.xml
+
+mrproper: clean
+ rm $(EXEC)
+