mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-22 04:18:01 +00:00
20 lines
338 B
Makefile
20 lines
338 B
Makefile
PREFIX=/usr/local
|
|
|
|
all: jsoncat libjsonpull.a
|
|
|
|
install: jsonpull.h libjsonpull.a
|
|
cp jsonpull.h $(PREFIX)/include/jsonpull.h
|
|
cp libjsonpull.a $(PREFIX)/lib/libjsonpull.a
|
|
|
|
jsoncat: jsoncat.o jsonpull.o
|
|
cc -g -Wall -o $@ $^
|
|
|
|
jsoncat.o jsonpull.o: jsonpull.h
|
|
|
|
libjsonpull.a: jsonpull.o
|
|
ar rc $@ $^
|
|
ranlib $@
|
|
|
|
%.o: %.c
|
|
cc -g -Wall -c $<
|