mapnik/plugins/input/osm/Makefile.example

10 lines
392 B
Text
Raw Normal View History

2008-03-01 12:49:37 +01:00
CXXFLAGS = `xml2-config --cflags` -I/usr/local/include/mapnik -I/usr/include/boost -I/usr/include/freetype2 -I/home/nick/mapnik-osm/agg/include -g
2008-03-02 14:23:50 +01:00
LDFLAGS = `xml2-config --libs` -L/usr/local/lib
LDFLAGS5 = `xml2-config --libs` -L/usr/local/lib -lmapnik
OBJ = test.o osm.o osmparser.o
2008-03-01 12:49:37 +01:00
test: $(OBJ)
2011-04-02 05:45:50 +02:00
g++ -o test $(OBJ) $(LDFLAGS)
2008-03-01 12:49:37 +01:00
render: render.o
2011-04-02 05:45:50 +02:00
g++ -o render render.o $(LDFLAGS5)
2008-03-01 12:49:37 +01:00