From e80a4a91ab8cd4721f5007c9d9eb8cfbe997155e Mon Sep 17 00:00:00 2001 From: Ludovic Pouzenc Date: Fri, 22 Jun 2012 14:56:18 +0000 Subject: Premier essai d'interface graphique avec Glade 2 git-svn-id: file:///var/svn/2012-violon-leds/trunk@25 6be1fa4d-33ac-4c33-becc-79fcb3794bb6 --- tests/test7/Makefile | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 tests/test7/Makefile (limited to 'tests/test7/Makefile') 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) + -- cgit v1.2.3