mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-03 08:00:21 +08:00
de55c0cef6
2 Optimize regex execution
21 lines
450 B
Makefile
21 lines
450 B
Makefile
# $PostgreSQL: pgsql/contrib/tsearch2/ispell/Makefile,v 1.6 2004/06/23 11:06:11 teodor Exp $
|
|
|
|
subdir = contrib/tsearch2/ispell
|
|
top_builddir = ../../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
|
|
PG_CPPFLAGS = -I$(srcdir)/.. $(CPPFLAGS)
|
|
override CFLAGS += $(CFLAGS_SL)
|
|
|
|
SUBOBJS = spell.o regis.o
|
|
|
|
all: SUBSYS.o
|
|
|
|
SUBSYS.o: $(SUBOBJS)
|
|
$(LD) $(LDREL) $(LDOUT) $@ $^
|
|
|
|
EXTRA_CLEAN = SUBSYS.o $(SUBOBJS)
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|