CVS: winex/port Makefile.in,1.6,1.7

[email protected] 14 Dec 2007 20:15:02 -0000
Newsgroups gmane.comp.emulators.winex.cvs
Message-ID <[email protected]>
Subject: winex/port Makefile.in,1.6,1.7Update of /var/lib/cvsd/cvsroot/winex/port
In directory agravaine:/tmp/cvs-serv15007/port

Modified Files:
	Makefile.in 
Log Message:
Changed all our makefiles to separate out our usage of @DLLFLAGS@. A new
DLLFLAGS makefile variable has been added, initialized with @DLLFLAGS@
in the individual makefiles. All existing usage of @DLLFLAGS@ has been
replaced with $(DLLFLAGS), and most importantly, @DLLFLAGS@ is no longer
included in any makefile's DEFS variable. Instead, $(DLLFLAGS) is included
directly into ALLCFLAGS. DEFS should only contain preprocessor definitions,
nothing else, so that it can be used by other tools with a preprocessor
(widl).


Index: Makefile.in
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/port/Makefile.in,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- Makefile.in	29 Mar 2007 21:48:29 -0000	1.6
+++ Makefile.in	14 Dec 2007 20:15:00 -0000	1.7
@@ -1,4 +1,5 @@
-DEFS      = @DLLFLAGS@ -D__WINE__
+DLLFLAGS  = @DLLFLAGS@
+DEFS      = -D__WINE__
 TOPSRCDIR = @top_srcdir@
 TOPOBJDIR = ..
 SRCDIR    = @srcdir@