mirror of
https://github.com/mapbox/tippecanoe.git
synced 2025-01-22 04:18:01 +00:00
10 lines
129 B
Makefile
10 lines
129 B
Makefile
all: jsoncat
|
|
|
|
jsoncat: jsoncat.o jsonpull.o
|
|
cc -g -Wall -o $@ $^
|
|
|
|
jsoncat.o jsonpull.o: jsonpull.h
|
|
|
|
%.o: %.c
|
|
cc -g -Wall -c $<
|