File: Makefile

package info (click to toggle)
osm2pgsql 0.52.20080408-2
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 348 kB
  • ctags: 440
  • sloc: ansic: 3,963; sh: 469; cpp: 339; makefile: 125
file content (18 lines) | stat: -rw-r--r-- 379 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CFLAGS += -g 
CFLAGS += -O2 -Wall
CFLAGS += $(shell xml2-config --cflags)
CFLAGS += $(shell geos-config --cflags)
CXXFLAGS += -g -O2 -Wall -DGEOS_INLINE 
LDFLAGS += $(shell xml2-config --libs) 
LDFLAGS += $(shell geos-config --libs) 

APPS:=osm2pgsql

.PHONY: all clean

all: $(APPS)

clean: 
	rm -f  $(APPS) osm2pgsql.o build_geometry.o

osm2pgsql: osm2pgsql.o build_geometry.o