We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d9be2d1 commit 2c281c9Copy full SHA for 2c281c9
src/Makefile
@@ -1,6 +1,6 @@
1
2
-CXX = g++
3
-CXXFLAGS = -O3
+CXX ?= g++
+CXXFLAGS ?= -O3
4
AR = ar
5
6
all: libosmpbf.a ../include/osmpbf/fileformat.pb.h ../include/osmpbf/osmformat.pb.h
tools/Makefile
@@ -1,7 +1,8 @@
-CXXFLAGS = -g -I../include
-LDFLAGS = -L../src -lpthread -lz -lprotobuf-lite -losmpbf
+CXXFLAGS ?= -g
+CXXFLAGS += -I../include
+LDFLAGS += -L../src -pthread -lz -lprotobuf-lite -losmpbf
7
all: osmpbf-outline
8
0 commit comments