Skip to content
Snippets Groups Projects
Commit f237a80d authored by Tom Lane's avatar Tom Lane
Browse files

Fix to build correctly outside source tree.

parent 17d6721e
No related branches found
No related tags found
No related merge requests found
...@@ -3,7 +3,7 @@ top_builddir = ../.. ...@@ -3,7 +3,7 @@ top_builddir = ../..
include $(top_builddir)/src/Makefile.global include $(top_builddir)/src/Makefile.global
override CPPFLAGS := -I. -I./snowball -I./ispell -I./wordparser $(CPPFLAGS) override CPPFLAGS := -I$(srcdir) -I$(srcdir)/snowball -I$(srcdir)/ispell -I$(srcdir)/wordparser $(CPPFLAGS)
MODULE_big = tsearch2 MODULE_big = tsearch2
OBJS = dict_ex.o dict.o snmap.o stopword.o common.o prs_dcfg.o \ OBJS = dict_ex.o dict.o snmap.o stopword.o common.o prs_dcfg.o \
...@@ -35,7 +35,7 @@ include $(top_srcdir)/contrib/contrib-global.mk ...@@ -35,7 +35,7 @@ include $(top_srcdir)/contrib/contrib-global.mk
install: installstop install: installstop
installstop: installstop:
cp stopword/*.stop $(datadir) cp $(srcdir)/stopword/*.stop $(datadir)
tsearch2.sql.in: tsearch.sql._in tsearch2.sql.in: tsearch.sql._in
......
...@@ -3,7 +3,7 @@ top_builddir = ../../.. ...@@ -3,7 +3,7 @@ top_builddir = ../../..
include $(top_builddir)/src/Makefile.global include $(top_builddir)/src/Makefile.global
override CPPFLAGS := -I. -I.. $(CPPFLAGS) override CPPFLAGS := -I$(srcdir) -I$(srcdir)/.. $(CPPFLAGS)
SUBOBJS = spell.o SUBOBJS = spell.o
......
...@@ -3,7 +3,7 @@ top_builddir = ../../.. ...@@ -3,7 +3,7 @@ top_builddir = ../../..
include $(top_builddir)/src/Makefile.global include $(top_builddir)/src/Makefile.global
override CPPFLAGS := -I. -I.. $(CPPFLAGS) override CPPFLAGS := -I$(srcdir) -I$(srcdir)/.. $(CPPFLAGS)
SUBOBJS = english_stem.o api.o russian_stem.o utilities.o SUBOBJS = english_stem.o api.o russian_stem.o utilities.o
......
...@@ -3,7 +3,7 @@ top_builddir = ../../.. ...@@ -3,7 +3,7 @@ top_builddir = ../../..
include $(top_builddir)/src/Makefile.global include $(top_builddir)/src/Makefile.global
override CPPFLAGS := -I. -I.. $(CPPFLAGS) override CPPFLAGS := -I$(srcdir) -I$(srcdir)/.. $(CPPFLAGS)
SUBOBJS = parser.o deflex.o SUBOBJS = parser.o deflex.o
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment