-
Notifications
You must be signed in to change notification settings - Fork 53
/
Makefile
51 lines (37 loc) · 1.14 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
all: encode render enumerate merge
PNG_CFLAGS=$(shell pkg-config libpng --cflags)
PNG_LDFLAGS=$(shell pkg-config libpng --libs)
ifeq ($(PNG_LDFLAGS),)
PNG_LDFLAGS=-lpng
endif
ENCODE_OBJS = encode.o util.o
RENDER_CORE_OBJS = render.o util.o clip.o dump.o
ENUMERATE_OBJS = enumerate.o util.o dump.o
MERGE_OBJS = merge.o util.o
RENDER_VECTOR_OBJS = vector_tile.pb.o vector.o
RENDER_PNG_OBJS = graphics.o
RENDER_RASTER_OBJS = raster.o
encode: $(ENCODE_OBJS)
$(CC) -g -Wall -O3 -o $@ $^ -lm
render: $(RENDER_CORE_OBJS) $(RENDER_PNG_OBJS)
$(CC) -g -Wall -O3 -o $@ $^ -lm -lz $(PNG_LDFLAGS)
render-vector: $(RENDER_CORE_OBJS) $(RENDER_VECTOR_OBJS)
$(CC) -g -Wall -O3 -o $@ $^ -lm -lz -lprotobuf-lite
render-raster: $(RENDER_CORE_OBJS) $(RENDER_RASTER_OBJS)
$(CC) -g -Wall -O3 -o $@ $^ -lm
enumerate: $(ENUMERATE_OBJS)
$(CC) -g -Wall -O3 -o $@ $^ -lm
merge: $(MERGE_OBJS)
$(CC) -g -Wall -O3 -o $@ $^ -lm
vector_tile.pb.cc vector_tile.pb.h: vector_tile.proto
protoc --cpp_out=. vector_tile.proto
.c.o:
$(CC) -g -Wall -O3 $(PNG_CFLAGS) -c $<
%.o: %.cc
g++ -g -Wall -O3 -c $<
clean:
rm -f encode
rm -f render
rm -f enumerate
rm -f merge
rm -f *.o