CVS: winex/programs Makeprog.rules.in,1.5,1.6

[email protected] 14 Dec 2007 20:15:09 -0000
Newsgroups gmane.comp.emulators.winex.cvs
Message-ID <[email protected]>
Subject: winex/programs Makeprog.rules.in,1.5,1.6Update of /var/lib/cvsd/cvsroot/winex/programs
In directory agravaine:/tmp/cvs-serv15034/programs

Modified Files:
	Makeprog.rules.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: Makeprog.rules.in
===================================================================
RCS file: /var/lib/cvsd/cvsroot/winex/programs/Makeprog.rules.in,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -d -r1.5 -r1.6
--- Makeprog.rules.in	5 Mar 2005 00:49:03 -0000	1.5
+++ Makeprog.rules.in	14 Dec 2007 20:15:07 -0000	1.6
@@ -8,7 +8,8 @@
 # plus all variables required by the global Make.rules.in
 #
 
-DEFS       = @DLLFLAGS@ -DSTRICT -DNONAMELESSUNION -DNONAMELESSSTRUCT $(EXTRADEFS)
+DLLFLAGS   = @DLLFLAGS@
+DEFS       = -DSTRICT -DNONAMELESSUNION -DNONAMELESSSTRUCT $(EXTRADEFS)
 LDDLLFLAGS = @LDDLLFLAGS@
 ALL_OBJS   = $(MODULE).spec.o $(OBJS)
 ALL_LIBS   = $(LIBWINE) $(EXTRALIBS) $(LIBS)