mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-15 08:20:16 +08:00
5e2707c45f
singlebyte encodings, so we should have snowball for every encodings. I hope that finalize multibyte support work in tsearch2, but testing is needed...
27 lines
570 B
Makefile
27 lines
570 B
Makefile
# $PostgreSQL: pgsql/contrib/tsearch2/snowball/Makefile,v 1.9 2006/01/27 16:32:31 teodor Exp $
|
|
|
|
SUBOBJS = english_stem.o api.o russian_stem.o russian_stem_UTF8.o utilities.o
|
|
|
|
EXTRA_CLEAN = SUBSYS.o $(SUBOBJS)
|
|
|
|
PG_CPPFLAGS = -I$(srcdir)/..
|
|
|
|
ifdef USE_PGXS
|
|
PGXS := $(shell pg_config --pgxs)
|
|
include $(PGXS)
|
|
else
|
|
subdir = contrib/tsearch2/snowball
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|
|
endif
|
|
|
|
override CFLAGS += $(CFLAGS_SL)
|
|
|
|
all: SUBSYS.o
|
|
|
|
SUBSYS.o: $(SUBOBJS)
|
|
$(LD) $(LDREL) $(LDOUT) $@ $^
|
|
|
|
|