From c083d2f9f88443c0ea353efcf9a6ec3ee172c10d Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Fri, 26 Sep 2014 14:53:10 -0700 Subject: [PATCH] Commit to a name --- Makefile | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/Makefile b/Makefile index c41831a..6fd4961 100644 --- a/Makefile +++ b/Makefile @@ -1,24 +1,18 @@ PREFIX=/usr/local -all: jsoncat libjsonpull.a geojson +all: tippecanoe -install: jsonpull.h libjsonpull.a - cp jsonpull.h $(PREFIX)/include/jsonpull.h - cp libjsonpull.a $(PREFIX)/lib/libjsonpull.a +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= -jsoncat: jsoncat.o jsonpull.o - cc $(PG) -g -Wall -o $@ $^ - -geojson: geojson.o jsonpull.o vector_tile.pb.o tile.o +tippecanoe: geojson.o jsonpull.o vector_tile.pb.o tile.o cc $(PG) -O3 -g -Wall -o $@ $^ -lm -lz -lprotobuf-lite -lsqlite3 -jsoncat.o jsonpull.o: jsonpull.h - libjsonpull.a: jsonpull.o ar rc $@ $^ ranlib $@ @@ -28,3 +22,6 @@ libjsonpull.a: jsonpull.o %.o: %.cc g++ $(PG) -O3 -g -Wall -c $< + +clean: + rm tippecanoe *.o