head	1.11;
access;
symbols
	REL7_2_8:1.10
	REL7_2_7:1.10
	REL7_2_6:1.10
	REL7_2_5:1.10
	REL7_2_4:1.10
	REL7_2_3:1.10
	REL7_2_STABLE:1.10.0.4
	REL7_2:1.10
	REL7_2_RC2:1.10
	REL7_2_RC1:1.10
	REL7_2_BETA5:1.10
	REL7_2_BETA4:1.10
	REL7_2_BETA3:1.10
	REL7_2_BETA2:1.10
	REL7_2_BETA1:1.10
	REL7_1_2:1.10
	REL7_1_STABLE:1.10.0.2
	REL7_1_BETA:1.9
	REL7_1_BETA3:1.9
	REL7_1_BETA2:1.9
	REL7_1:1.10
	REL7_0_PATCHES:1.6.0.2
	REL7_0:1.6
	REL6_5_PATCHES:1.4.0.4
	REL6_5:1.4
	REL6_4:1.4.0.2
	release-6-3:1.4
	REL2_0B:1.3.0.2
	REL2_0:1.3;
locks; strict;
comment	@# @;


1.11
date	2002.08.28.20.55.23;	author momjian;	state dead;
branches;
next	1.10;

1.10
date	2001.02.20.19.20.28;	author petere;	state Exp;
branches;
next	1.9;

1.9
date	2000.10.20.21.03.50;	author petere;	state Exp;
branches;
next	1.8;

1.8
date	2000.08.31.16.10.41;	author petere;	state Exp;
branches;
next	1.7;

1.7
date	2000.05.29.05.45.18;	author tgl;	state Exp;
branches;
next	1.6;

1.6
date	99.12.13.22.34.22;	author momjian;	state Exp;
branches;
next	1.5;

1.5
date	99.12.09.19.15.11;	author momjian;	state Exp;
branches;
next	1.4;

1.4
date	97.12.20.00.28.13;	author scrappy;	state Exp;
branches;
next	1.3;

1.3
date	96.11.09.06.22.42;	author momjian;	state Exp;
branches;
next	1.2;

1.2
date	96.11.03.06.52.43;	author scrappy;	state Exp;
branches;
next	1.1;

1.1
date	96.10.27.09.53.00;	author bryanh;	state Exp;
branches;
next	;


desc
@@


1.11
log
@Remove TIOGA files from CVS current;  they remain in repositiry.
@
text
@#-------------------------------------------------------------------------
#
# Makefile--
#    Makefile for tioga
#
# IDENTIFICATION
#    $Header: /cvsroot/pgsql-server/src/backend/tioga/Makefile,v 1.10 2001/02/20 19:20:28 petere Exp $
#
#-------------------------------------------------------------------------

subdir = src/backend/tioga
top_builddir = ../../..
include $(top_builddir)/src/Makefile.global

OBJS = tgRecipe.o Varray.o
override CPPFLAGS := -I$(srcdir) $(CPPFLAGS)

all: SUBSYS.o

SUBSYS.o: $(OBJS)
	$(LD) $(LDREL) $(LDOUT) SUBSYS.o $(OBJS)

depend dep:
	$(CC) -MM $(CFLAGS) *.c >depend

clean: 
	rm -f SUBSYS.o $(OBJS) 

ifeq (depend,$(wildcard depend))
include depend
endif
@


1.10
log
@Make sure -L and -I's for our source tree are always before system include
or library directories on the command line.
@
text
@d7 1
a7 1
#    $Header: /home/projects/pgsql/cvsroot/pgsql/src/backend/tioga/Makefile,v 1.9 2000/10/20 21:03:50 petere Exp $
@


1.9
log
@Add support for VPATH builds, that is, building somewhere else than in the
source directory.  This involves mostly makefiles using $(srcdir) when they
might have used ".".  (Regression tests don't work with this, yet.)

Sort out usage of CPPFLAGS, CFLAGS (and CXXFLAGS).  Add "override" keyword
in most places, to preserve necessary flags even when the user overrode the
flags.
@
text
@d7 1
a7 1
#    $Header: /home/projects/pgsql/cvsroot/pgsql/src/backend/tioga/Makefile,v 1.8 2000/08/31 16:10:41 petere Exp $
d16 1
a16 1
override CPPFLAGS += -I$(srcdir)
@


1.8
log
@Fix relative path references so that make knowns which dependencies refer
to one another. Sort out builddir vs srcdir variable namings. Remove some
now obsoleted make variables.
@
text
@d7 1
a7 1
#    $Header: /home/projects/pgsql/cvsroot/pgsql/src/backend/tioga/Makefile,v 1.7 2000/05/29 05:45:18 tgl Exp $
d16 1
a16 1
CPPFLAGS += -I$(srcdir)
@


1.7
log
@Generated header files parse.h and fmgroids.h are now copied into
the src/include tree, so that -I backend is no longer necessary anywhere.
Also, clean up some bit rot in contrib tree.
@
text
@d7 1
a7 1
#    $Header: /home/projects/pgsql/cvsroot/pgsql/src/backend/tioga/Makefile,v 1.6 1999/12/13 22:34:22 momjian Exp $
d11 3
a13 2
SRCDIR = ../..
include ../../Makefile.global
d16 1
a31 1

@


1.6
log
@New LDOUT makefile variable for QNX os.
@
text
@d7 1
a7 1
#    $Header: /usr/local/cvsroot/pgsql/src/backend/tioga/Makefile,v 1.5 1999/12/09 19:15:11 momjian Exp $
a13 4
INCLUDE_OPT = -I.. 

CFLAGS+=$(INCLUDE_OPT)

d22 1
a22 1
	$(CC) -MM $(INCLUDE_OPT) *.c >depend
@


1.5
log
@Make LD -r as macros that can be changed for QNX.
@
text
@d7 1
a7 1
#    $Header: /usr/local/cvsroot/pgsql/src/backend/tioga/Makefile,v 1.4 1997/12/20 00:28:13 scrappy Exp $
d23 1
a23 1
	$(LD) $(LDREL) -o SUBSYS.o $(OBJS)
@


1.4
log
@Major cleanout of PORTNAME variables from Makefiles...bound to screw up
some of the ports...
@
text
@d7 1
a7 1
#    $Header: /usr/local/cvsroot/pgsql/src/backend/tioga/Makefile,v 1.3 1996/11/09 06:22:42 momjian Exp $
d23 1
a23 1
	$(LD) -r -o SUBSYS.o $(OBJS)
@


1.3
log
@Makefile cleanup after reorganization
@
text
@d7 1
a7 1
#    $Header: /usr/local/cvsroot/postgres95/src/backend/tioga/Makefile,v 1.2 1996/11/03 06:52:43 scrappy Exp $
d14 1
a14 3
INCLUDE_OPT = -I.. \
              -I../port/$(PORTNAME) \
              -I../../include
@


1.2
log
@Produce a clean compile of backend...
@
text
@d7 1
a7 1
#    $Header: /usr/local/cvsroot/postgres95/src/backend/tioga/Makefile,v 1.1 1996/10/27 09:53:00 bryanh Exp $
d14 1
a14 1
INCLUDE_OPT = 
@


1.1
log
@Simplify make files, add full dependencies.
@
text
@d7 1
a7 1
#    $Header: /usr/local/cvsroot/postgres95/src/backend/access/common/Makefile.inc,v 1.1.1.1 1996/07/09 06:21:09 scrappy Exp $
d14 1
a14 1
INCLUDE_OPT = -I.. \
a15 1
              -I../include \
@
