Mailing-List: contact cygwin-help AT sourceware DOT cygnus DOT com; run by ezmlm Sender: cygwin-owner AT sourceware DOT cygnus DOT com Delivered-To: mailing list cygwin AT sourceware DOT cygnus DOT com From: "Joost Kraaijeveld" To: Subject: Make problem Date: Mon, 8 Mar 1999 08:10:45 +0100 Message-ID: <000c01be6932$c8e27c40$0300a8c0@abraracourcix.askesis.nl> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook 8.5, Build 4.71.2173.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.2106.4 Importance: Normal Hi, I need to run the following makefile (see below). For some reason the LFLAGS macro is printed the right way on the screen but is passed to the linker the wron way. Is there a way to pass LFLAGS correctly to the linker (as literal string) using make and bash? TIA Joost ######################### Makefile ################################ CPPFLAGS = -Q -Ti -Ft -Tdp -Fb -Tm -Gm -Gd -qrtti=all LFLAGS = "-de -br -nologo -pmtype:vio -code:RX -data:RW -def" all: text.exe text.exe: main.obj icc $(CPPFLAGS) -B$(LFLAGS) -Fetext.exe main.obj main.obj: main.cpp icc -C $(CPPFLAGS) main.cpp clean: -rm text.exe *.obj *.pdb tempinc/* rd .\tempinc -- Want to unsubscribe from this list? Send a message to cygwin-unsubscribe AT sourceware DOT cygnus DOT com