Nominatim/module/Makefile
Sarah Hoffmann badd2e46aa provide srcdir for postgres module in VPATH and CPPFLAGS
The pgxs makefile in Postgres <= 9.2 cannot yet handle VPATH
correctly. Provide header paths explicitly and overwrite
VPATH after sourcing the pgxs file.

Fixes #454.
2016-06-05 00:35:07 +02:00

12 lines
173 B
Makefile

MODULES = nominatim
PG_CPPFLAGS = -I$(MODSRCDIR)
include $(PGXS)
VPATH = $(MODSRCDIR)
all:
chmod 755 nominatim.so
install:
@echo Library does not need to be installed.