head	1.8;
access;
symbols
	PG95_1_01:1.8
	PG95_1_0:1.7
	PG95_beta_03:1.7
	PG95_beta_02:1.4
	PG95_beta:1.4;
locks; strict;
comment	@# @;


1.8
date	96.02.24.01.21.06;	author jolly;	state Exp;
branches;
next	1.7;

1.7
date	95.07.21.19.38.38;	author jolly;	state Exp;
branches;
next	1.6;

1.6
date	95.07.18.22.17.46;	author jolly;	state Exp;
branches;
next	1.5;

1.5
date	95.07.11.20.41.24;	author jolly;	state Exp;
branches;
next	1.4;

1.4
date	95.03.23.01.22.49;	author andrew;	state Exp;
branches;
next	1.3;

1.3
date	95.03.11.00.59.23;	author jolly;	state Exp;
branches;
next	1.2;

1.2
date	95.02.14.23.59.57;	author jolly;	state Exp;
branches;
next	1.1;

1.1
date	95.02.05.04.45.02;	author jolly;	state Exp;
branches;
next	;


desc
@@


1.8
log
@.
@
text
@#-------------------------------------------------------------------------
#
# Makefile
#    Makefile for libpgtcl library
#
# Copyright (c) 1994, Regents of the University of California
#
#
# IDENTIFICATION
#    $Header: /home/jolly/POSTGRES_MASTER_CVS/src/libpgtcl/Makefile,v 1.7 1995/07/21 19:38:38 jolly Exp $
#
#-------------------------------------------------------------------------

LIB=	pgtcl

MKDIR=	../mk
include $(MKDIR)/postgres.mk

CFLAGS+= -I$(HEADERDIR) \
	 -I$(srcdir)/backend/include \
	 -I$(srcdir)/backend \
	 -I$(CURDIR) \
	 -I$(TCL_INCDIR)

ifdef KRBVERS
CFLAGS+= $(KRBFLAGS)
endif

LIBSRCS= pgtcl.c pgtclCmds.c pgtclId.c

install-headers:
	$(INSTALL) $(INSTLOPTS) libpgtcl.h $(HEADERDIR)/libpgtcl.h


install:: install-headers

include $(MKDIR)/postgres.lib.mk

@


1.7
log
@moved tcl/tk variables to src/Makefile.global
@
text
@d10 1
a10 1
#    $Header: /usr/local/devel/pglite/cvs/src/libpgtcl/Makefile,v 1.6 1995/07/18 22:17:46 jolly Exp $
d32 1
a32 1
	$(INSTALL) -c -m 444 libpgtcl.h $(HEADERDIR)/libpgtcl.h
@


1.6
log
@*** empty log message ***
@
text
@d10 1
a10 1
#    $Header: /usr/local/devel/pglite/cvs/src/libpgtcl/Makefile,v 1.5 1995/07/11 20:41:24 jolly Exp $
a18 5

TCL_INCDIR := /usr/local/devel/tcl7.4/include
TCL_LIBDIR := /usr/local/devel/tcl7.4/lib


@


1.5
log
@libpgtcl is vastly simplified; most of the old functionality has been
pushed into the new libpq.  As a consequence, apps can no longer link with
ibpgtcl alone; libpq must be linked in as well.
@
text
@d10 1
a10 1
#    $Header: /usr/local/devel/pglite/cvs/src/libpgtcl/Makefile,v 1.4 1995/03/23 01:22:49 andrew Exp $
d20 2
a21 2
TCL_INCDIR := /usr/local/devel/tcl/include
TCL_LIBDIR := /usr/local/devel/tcl/lib
d23 1
@


1.4
log
@works for hpux, sparc and ultrix4 ports
@
text
@d10 1
a10 1
#    $Header: /usr/local/devel/pglite/cvs/src/libpgtcl/Makefile,v 1.3 1995/03/11 00:59:23 jolly Exp $
d23 5
a27 4
CFLAGS+= -I$(srcdir)/backend/include \
	-I$(srcdir)/backend \
	-I$(CURDIR) \
	-I$(TCL_INCDIR)
d33 1
a33 1
LIBSRCS= fe-auth.c pgconnect.c pgtcl.c pgtclCmds.c pgtclId.c pgexec.c pgmisc.c
@


1.3
log
@set TCL_INCDIR and TCL_LIBDIR to point to /usr/local/devel/tcl
@
text
@d10 1
a10 1
#    $Header: /usr/local/devel/pglite/cvs/src/libpgtcl/Makefile,v 1.2 1995/02/14 23:59:57 jolly Exp $
d14 1
a14 1
.include <postgres.global.mk>
d16 2
a17 1
LIB= pgtcl
d19 1
d23 8
a30 8
CFLAGS+= -I${.CURDIR}/../backend/include \
	 -I${.CURDIR}/../backend \
	 -I${.CURDIR}/../../libpgtcl\
	 -I${TCL_INCDIR}

.ifdef KRBVERS
CFLAGS+= ${KRBFLAGS}
.endif
d32 1
a32 1
SRCS=	fe-auth.c pgconnect.c pgtcl.c pgtclCmds.c pgtclId.c pgexec.c pgmisc.c
d34 2
a35 1
NOPROFILE=1
a36 2
install-headers:
	${INSTALL} -c -m 444 ${.CURDIR}/libpgtcl.h ${HEADERDIR}/libpgtcl.h
d38 1
a38 1
.include <postgres.lib.mk>	
d40 1
a40 1
install: install-headers
@


1.2
log
@*** empty log message ***
@
text
@d10 1
a10 1
#    $Header: /usr/local/devel/pglite/cvs/src/libpgtcl/Makefile,v 1.1 1995/02/05 04:45:02 jolly Exp $
d18 2
a19 2
TCL_INCDIR := /private/osf/include
TCL_LIBDIR := /private/osf/lib
@


1.1
log
@libpgtcl is a library that provides a tcl interface for front-end
clients to interface to pglite backends.  See libpgtcl.doc for details.
@
text
@d10 1
a10 1
#    $Header: /usr/local/devel/pglite/cvs/src/libpq/Makefile,v 1.4 1995/01/16 22:42:42 jolly Exp $
d34 3
d39 1
a39 1

@
