~vcs-imports/mammoth-replicator/trunk

« back to all changes in this revision

Viewing changes to contrib/dbase/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/dbase/Makefile,v 1.6.4.1 2005-03-25 18:18:37 momjian Exp $
 
2
 
 
3
PROGRAM = dbf2pg
 
4
OBJS    = dbf.o dbf2pg.o endian.o
 
5
PG_CPPFLAGS = -I$(libpq_srcdir)
 
6
PG_LIBS = $(libpq_pgport)
 
7
 
 
8
# Uncomment this to provide charset translation
 
9
#PG_CPPFLAGS += -DHAVE_ICONV_H
 
10
# You might need to uncomment this too, if libiconv is a separate
 
11
# library on your platform
 
12
#PG_LIBS += -liconv
 
13
 
 
14
DOCS = README.dbf2pg
 
15
MAN = dbf2pg.1                  # XXX not implemented
 
16
 
 
17
 
 
18
ifdef USE_PGXS
 
19
PGXS = $(shell pg_config --pgxs)
 
20
include $(PGXS)
 
21
else
 
22
subdir = contrib/dbase
 
23
top_builddir = ../..
 
24
include $(top_builddir)/src/Makefile.global
 
25
include $(top_srcdir)/contrib/contrib-global.mk
 
26
endif