mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-09 08:10:09 +08:00
17cc78ef01
written a generic framework of rules that the contrib makefiles can use instead of writing their own each time. You only need to set a few variables and off you go.
20 lines
579 B
Makefile
20 lines
579 B
Makefile
# $Header: /cvsroot/pgsql/contrib/findoidjoins/Attic/Makefile,v 1.13 2001/09/06 10:49:29 petere Exp $
|
|
|
|
subdir = contrib/findoidjoins
|
|
top_builddir = ../..
|
|
include $(top_builddir)/src/Makefile.global
|
|
|
|
PROGRAM = findoidjoins
|
|
OBJS = findoidjoins.o
|
|
|
|
libpgeasy_srcdir = $(top_srcdir)/src/interfaces/libpgeasy
|
|
libpgeasy_builddir = $(top_builddir)/src/interfaces/libpgeasy
|
|
|
|
PG_CPPFLAGS = -I$(libpgeasy_srcdir) -I$(libpq_srcdir)
|
|
PG_LIBS = -L$(libpgeasy_builddir) -lpgeasy $(libpq)
|
|
|
|
SCRIPTS = make_oidjoins_check
|
|
DOCS = README.findoidjoins
|
|
|
|
include $(top_srcdir)/contrib/contrib-global.mk
|