From 7f318b5e2a47a3f88f48cabcccd0cfa04ff6597a Mon Sep 17 00:00:00 2001 From: pcroth Date: Mon, 11 Feb 2002 22:43:39 +0000 Subject: [PATCH] Removed use of custom-built flex executable on Windows. --- nmake.config | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/nmake.config b/nmake.config index db6ba0a..a680190 100644 --- a/nmake.config +++ b/nmake.config @@ -1,6 +1,6 @@ # Paradyn overall build configuration (Windows/NT) # -# $Id: nmake.config,v 1.35 2001/12/19 19:12:49 schendel Exp $ +# $Id: nmake.config,v 1.36 2002/02/11 22:43:39 pcroth Exp $ # SUITE_NAME = Paradyn @@ -46,8 +46,6 @@ AS = CC = cl -nologo CXX = cl -nologo LINK = link -LEX = p:\paradyn\packages\winnt\bin\flex -FLEX_LIB = p:\paradyn\packages\winnt\lib\libfl.lib RANLIB = RPCPKG = p:\paradyn\packages\winnt\oncrpc RPC_LIB = oncrpc.lib @@ -58,6 +56,12 @@ LDFLAGS = -nologo PERL = perl # NB: perl v5 or higher required! +!ifdef USES_FLEX +LEX = flex +FLEX_LIB = libfl.a +LDFLAGS = $(LDFLAGS) -Lc:\cygwin\lib +!endif + !ifdef SHELL # use richer Unix shell utilities when they're available! CP = cp MV = mv -- 1.8.3.1