mirror of
https://git.postgresql.org/git/postgresql.git
synced 2025-02-05 19:09:58 +08:00
21 lines
335 B
Makefile
21 lines
335 B
Makefile
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
|
|
|
|
|