Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
d6f0f44b
Commit
d6f0f44b
authored
Aug 04, 2003
by
Teodor Sigaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
make sub-Makefiles in the sub-directories
parent
8405e505
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
86 additions
and
12 deletions
+86
-12
contrib/tsearch2/Makefile
contrib/tsearch2/Makefile
+19
-12
contrib/tsearch2/ispell/Makefile
contrib/tsearch2/ispell/Makefile
+20
-0
contrib/tsearch2/snowball/Makefile
contrib/tsearch2/snowball/Makefile
+20
-0
contrib/tsearch2/wordparser/Makefile
contrib/tsearch2/wordparser/Makefile
+27
-0
No files found.
contrib/tsearch2/Makefile
View file @
d6f0f44b
...
...
@@ -7,24 +7,26 @@ override CPPFLAGS := -I. -I./snowball -I./ispell -I./wordparser $(CPPFLAGS)
MODULE_big
=
tsearch2
OBJS
=
dict_ex.o dict.o snmap.o stopword.o common.o prs_dcfg.o
\
snowball/english_stem.o snowball/api.o snowball/russian_stem.o snowball/utilities.o
\
dict_snowball.o ispell/spell.o dict_ispell.o dict_syn.o
\
wparser.o wordparser/parser.o wordparser/deflex.o wparser_def.o
\
dict_snowball.o dict_ispell.o dict_syn.o
\
wparser.o wparser_def.o
\
ts_cfg.o tsvector.o rewrite.o crc32.o query.o gistidx.o
\
tsvector_op.o rank.o ts_stat.o
SUBDIRS
:=
snowball ispell wordparser
SUBDIROBJS
:=
$
(
SUBDIRS:%
=
%/SUBSYS.o
)
OBJS
:=
$(OBJS)
$(SUBDIROBJS)
$(SUBDIROBJS)
:
$(SUBDIRS:%=%-recursive) ;
$(SUBDIRS
:
%=%-recursive):
$(MAKE)
-C
$(
subst
-recursive
,,
$@
)
SUBSYS.o
DATA_built
=
tsearch2.sql untsearch2.sql
DOCS
=
README.tsearch2
REGRESS
=
tsearch2
wordparser/parser.c
:
wordparser/parser.l
ifdef
FLEX
$(FLEX)
$(FLEXFLAGS)
-8
-Ptsearch2_yy
-o
'$@'
$<
else
@
$(missing)
flex
$<
$@
endif
EXTRA_CLEAN
=
wordparser/parser.c tsearch2.sql.in
EXTRA_CLEAN
=
tsearch2.sql.in
SHLIB_LINK
:=
-lm
include
$(top_srcdir)/contrib/contrib-global.mk
...
...
@@ -40,5 +42,10 @@ tsearch2.sql.in: tsearch.sql._in
sed
's,DATA_PATH,
$(datadir)
,g'
<
$<
>
$@
untsearch2.sql
:
untsearch.sql.in
cp
$<
$@
cp
$<
$@
clean
:
subclean
subclean
:
for
dir
in
$(SUBDIRS)
;
do
$(MAKE)
-C
$$
dir
clean
||
exit
;
done
contrib/tsearch2/ispell/Makefile
0 → 100644
View file @
d6f0f44b
subdir
=
contrib/tsearch2/ispell
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
override CPPFLAGS
:
= -I. -I.. $(CPPFLAGS)
SUBOBJS
=
spell.o
all
:
SUBSYS.o
SUBSYS.o
:
$(SUBOBJS)
$(LD)
$(LDREL)
$(LDOUT)
$@
$^
EXTRA_CLEAN
=
SUBSYS.o
$(SUBOBJS)
include
$(top_srcdir)/contrib/contrib-global.mk
# DO NOT DELETE
contrib/tsearch2/snowball/Makefile
0 → 100644
View file @
d6f0f44b
subdir
=
contrib/tsearch2/snowball
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
override CPPFLAGS
:
= -I. -I.. $(CPPFLAGS)
SUBOBJS
=
english_stem.o api.o russian_stem.o utilities.o
all
:
SUBSYS.o
SUBSYS.o
:
$(SUBOBJS)
$(LD)
$(LDREL)
$(LDOUT)
$@
$^
EXTRA_CLEAN
=
SUBSYS.o
$(SUBOBJS)
include
$(top_srcdir)/contrib/contrib-global.mk
# DO NOT DELETE
contrib/tsearch2/wordparser/Makefile
0 → 100644
View file @
d6f0f44b
subdir
=
contrib/tsearch2/wordparser
top_builddir
=
../../..
include
$(top_builddir)/src/Makefile.global
override CPPFLAGS
:
= -I. -I.. $(CPPFLAGS)
SUBOBJS
=
parser.o deflex.o
all
:
SUBSYS.o
parser.c
:
parser.l
ifdef
FLEX
$(FLEX)
$(FLEXFLAGS)
-8
-Ptsearch2_yy
-o
'$@'
$<
else
@
$(missing)
flex
$<
$@
endif
SUBSYS.o
:
$(SUBOBJS)
$(LD)
$(LDREL)
$(LDOUT)
$@
$^
EXTRA_CLEAN
=
SUBSYS.o
$(SUBOBJS)
parser.c
include
$(top_srcdir)/contrib/contrib-global.mk
# DO NOT DELETE
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment