~ubuntu-branches/ubuntu/raring/osmpbf/raring

« back to all changes in this revision

Viewing changes to tools/Makefile

  • Committer: Package Import Robot
  • Author(s): Giovanni Mascellani
  • Date: 2012-06-15 10:04:57 UTC
  • Revision ID: package-import@ubuntu.com-20120615100457-hsek4dombdlbwxuh
Tags: 1.2.1-3
* Remove patch that sets a wrong location for protobuf.jar
  (closes: #676059).
* Bump Standards-Version to 3.9.3 (no changes required).
* Update copyright years.
* Fix Makefile so Debian build flags are honoured.
* Install POM file.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
 
2
2
CXX = g++
3
 
CXXFLAGS = -g -I../include
4
 
LDFLAGS = -L../src -lpthread -lz -lprotobuf-lite -losmpbf
 
3
CXXFLAGS = $(shell dpkg-buildflags --get CXXFLAGS) -g -I../include
 
4
LDFLAGS = $(shell dpkg-buildflags --get LDFLAGS) -L../src -lpthread -lz -lprotobuf-lite -losmpbf
5
5
 
6
6
all: osmpbf-outline
7
7