head	1.10;
access;
symbols
	REL6_5_PATCHES:1.9.0.2
	REL6_5:1.9
	REL6_4:1.8.0.2
	release-6-3:1.7;
locks; strict;
comment	@# @;


1.10
date	2000.01.16.20.08.45;	author petere;	state dead;
branches;
next	1.9;

1.9
date	99.01.17.06.19.49;	author momjian;	state Exp;
branches;
next	1.8;

1.8
date	98.04.06.00.31.39;	author momjian;	state Exp;
branches;
next	1.7;

1.7
date	97.05.21.00.45.24;	author momjian;	state Exp;
branches;
next	1.6;

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

1.5
date	97.05.16.02.00.03;	author scrappy;	state Exp;
branches;
next	1.4;

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

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

1.2
date	97.05.14.04.46.47;	author momjian;	state Exp;
branches;
next	1.1;

1.1
date	97.05.14.03.32.33;	author momjian;	state Exp;
branches;
next	;


desc
@@


1.10
log
@Removed lextest, because lex'ed files are now in the distribution.
@
text
@#
# Makefile - test for 2.5.3 flex bug
# Bruce Momjian 5/14/97
#
SRCDIR= ../
include ../Makefile.global

.DEFAULT all : lextest

install:

depend:

lextest: lextest.c scan.l
	$(LEX) scan.l
	$(CC) -c lex.yy.c
	$(CC) -c lextest.c
	$(CC) -o lextest lex.yy.o lextest.o
	@@echo "If this fails, flex is broken" | ./lextest || rm -f lextest

clean:
	rm -f lextest$(X) lex.yy.c lex.yy.o lextest.o

dep:
@


1.9
log
@Apply Win32 patch from Horak Daniel.
@
text
@@


1.8
log
@Hi,

Attached you'll find a (big) patch that fixes make dep and make
depend in all Makefiles where I found it to be appropriate.

It also removes the dependency in Makefile.global for NAMEDATALEN
and OIDNAMELEN by making backend/catalog/genbki.sh and bin/initdb/initdb.sh
a little smarter.

This no longer requires initdb.sh that is turned into initdb with
a sed script when installing Postgres, hence initdb.sh should be
renamed to initdb (after the patch has been applied :-) )

This patch is against the 6.3 sources, as it took a while to
complete.

Please review and apply,

Cheers,

Jeroen van Vianen
@
text
@d22 1
a22 1
	rm -f lextest lex.yy.c lex.yy.o lextest.o
@


1.7
log
@Add SRCDIR to lextest
@
text
@d23 2
@


1.6
log
@Add Makefile.global to lextest makefile.
@
text
@d5 1
@


1.5
log
@Modify lextest and GNUmakefile so that if the test does fail, the
make doesn't proceed
@
text
@d5 2
@


1.4
log
@Have Make process exit if lextest fails
@
text
@d16 1
a16 1
	@@echo "If this fails, flex is broken" | lextest || echo "You have a buggy version of flex.  Read INSTALL and search for flex for a fix.";exit
@


1.3
log
@Remove README.flex and make lextest point to INSTALL.
@
text
@d16 1
a16 1
	@@echo "If this fails, flex is broken" | lextest || echo "You have a buggy version of flex.  Read INSTALL and search for flex for a fix."
@


1.2
log
@lextest Makefile cleanup
@
text
@d16 1
a16 1
	@@echo "If this fails, flex is broken" | lextest || echo "You have a buggy version of flex.  Read doc/README.flex for a fix."
@


1.1
log
@Add test for flex bug as part of make, and point them to README.flex.
@
text
@d2 2
a3 1
# Makefile - tests for 2.5.3 flex bug
d5 7
a11 2
#
lextest : lextest.c scan.l
@
