~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to contrib/tsearch2/ispell/Makefile

  • Committer: alvherre
  • Date: 2005-12-16 21:24:52 UTC
  • Revision ID: svn-v4:db760fc0-0f08-0410-9d63-cc6633f64896:trunk:1
Initial import of the REL8_0_3 sources from the Pgsql CVS repository.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $PostgreSQL: pgsql/contrib/tsearch2/ispell/Makefile,v 1.6 2004-06-23 11:06:11 teodor Exp $
 
2
 
 
3
subdir = contrib/tsearch2/ispell
 
4
top_builddir = ../../..
 
5
include $(top_builddir)/src/Makefile.global
 
6
 
 
7
 
 
8
PG_CPPFLAGS = -I$(srcdir)/.. $(CPPFLAGS)
 
9
override CFLAGS += $(CFLAGS_SL)
 
10
 
 
11
SUBOBJS = spell.o regis.o 
 
12
 
 
13
all: SUBSYS.o
 
14
 
 
15
SUBSYS.o: $(SUBOBJS)
 
16
        $(LD) $(LDREL) $(LDOUT) $@ $^
 
17
 
 
18
EXTRA_CLEAN = SUBSYS.o $(SUBOBJS)
 
19
 
 
20
include $(top_srcdir)/contrib/contrib-global.mk