Revision 5ab7f894659bcfc5bac11e0bce8e31ce6c021cb1 authored by Eric Fischer on 29 September 2014, 17:49:08 UTC, committed by Eric Fischer on 29 September 2014, 17:50:24 UTC
1 parent ca6c491
Raw File
Makefile
PREFIX=/usr/local

all: tippecanoe

install: tippecanoe
	cp tippecanoe $(PREFIX)/bin/tippecanoe

vector_tile.pb.cc vector_tile.pb.h: vector_tile.proto
	protoc --cpp_out=. vector_tile.proto

PG=

tippecanoe: geojson.o jsonpull.o vector_tile.pb.o tile.o clip.o
	g++ $(PG) -O3 -g -Wall -o $@ $^ -lm -lz -lprotobuf-lite -lsqlite3

libjsonpull.a: jsonpull.o
	ar rc $@ $^
	ranlib $@

%.o: %.c
	cc $(PG) -O3 -g -Wall -c $<

%.o: %.cc
	g++ $(PG) -O3 -g -Wall -c $<

clean:
	rm tippecanoe *.o
back to top