Mercurial > MadButterfly
view inkscape/firefox/template/textmenu/Makefile @ 1095:bced6fe39856
Fix position (collision) detection for OpenVG.
We still have no way to check if a point is in the fill area of a
shape for OpenVG. So, we only use current area (rectangle) of a shape
to determine it. So, mbe_in_fill() of OpenVG always return true.
author | Thinker K.F. Li <thinker@codemud.net> |
---|---|
date | Sat, 04 Dec 2010 13:48:43 +0800 |
parents | 7d244a85dd68 |
children |
line wrap: on
line source
SRC=main.c %n.c OBJ=$(SRC:.c=.o) CFLAGS+=`pkg-config --cflags libmbfly` `pkg-config --cflags pangocairo` LDFLAGS=`pkg-config --libs libmbfly` .c.o: $(CC) $(CFLAGS) -c -o $@ $< %.so:%.mbsvg svg2code.py $< $(<:.mbsvg=.mb) m4 -I /usr/local/share/mb mb_c_header.m4 $(<:.mbsvg=.mb) > $(<:.mbsvg=.h) m4 -I /usr/local/share/mb mb_c_source.m4 $(<:.mbsvg=.mb) > $(<:.mbsvg=.c) $(CC) $(CFLAGS) -I../../include -I ../../include -shared -o $@ $(<:.mbsvg=.c) all: list.so textmenu textmenu : $(OBJ) $(CC) -o textmenu $(LDFLAGS) $(OBJ)