changeset 165:e959ed450b67

* compilation passed
author "Mat <MatLinuxer2@gmail.com>"
date Tue, 21 Oct 2008 02:22:17 +0800
parents 3fec69d26be3
children 69e32729cd06 73c4e93d331c
files examples/tank/Makefile
diffstat 1 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/examples/tank/Makefile	Mon Oct 20 16:27:45 2008 +0800
+++ b/examples/tank/Makefile	Tue Oct 21 02:22:17 2008 +0800
@@ -6,10 +6,11 @@
 MBS =	$(SVGS:C/\.svg/.mb/)
 SVG2CODE=	../../tools/svg2code.py
 MB_C_HEADER=    ../../tools/mb_c_header.m4
+MB_C_SOURCE=    ../../tools/mb_c_source.m4
 M4 =	m4
 M4FLAGS ?=	-I /usr/local/share/mb 
 LDFLAGS +=	
-LIBS +=		-lmbfly -lX11 -L/usr/local/lib `pkg-config --libs cairo`
+LIBS +=		-lmbfly -lX11 -L/usr/local/lib `pkg-config --libs cairo` -L../../src
 CFLAGS +=	-I/usr/local/include `pkg-config --cflags cairo` -I../../src
 BIN = tank
 
@@ -42,7 +43,7 @@
 	$(M4) $(M4FLAGS) $(MB_C_HEADER) $(.ALLSRC) > $@
 
 $(SVG:C/\.svg/.c/):	$(SVG:C/\.svg/.mb/)
-	$(M4) $(M4FLAGS) $(MB_C_HEADER) $(.ALLSRC) > $@
+	$(M4) $(M4FLAGS) $(MB_C_SOURCE) $(.ALLSRC) > $@
 
 .endfor