forked from hans/Nominatim
Some postgres installations report problems with the makefile magic that should look for the source where the Makefile is located. So hand in the path explicitly via VPATH instead. Fixes #453.
10 lines
143 B
Makefile
10 lines
143 B
Makefile
MODULES = nominatim
|
|
VPATH = $(MODSRCDIR)
|
|
include $(PGXS)
|
|
|
|
all:
|
|
chmod 755 nominatim.so
|
|
|
|
install:
|
|
@echo Library does not need to be installed.
|