From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Joost Kraaijeveld" To: Subject: Make problem Date: Wed, 31 Mar 1999 19:45:00 -0000 Message-ID: <000c01be6932$c8e27c40$0300a8c0@abraracourcix.askesis.nl> X-SW-Source: 1999-03n/msg00215.html Message-ID: <19990331194500.QXpCeuIk1agegGZY0eaGYoIymxyxk9SZd2GdPT3DDhg@z> 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@sourceware.cygnus.com