CVS: winex/misc Makefile.in,1.1.1.7,1.2
[email protected] 14 Dec 2007 20:14:30 -0000
| Newsgroups | gmane.comp.emulators.winex.cvs |
|---|---|
| Message-ID | <[email protected]> |
Subject: winex/misc Makefile.in,1.1.1.7,1.2Update of /var/lib/cvsd/cvsroot/winex/misc In directory agravaine:/tmp/cvs-serv14854/misc 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/misc/Makefile.in,v retrieving revision 1.1.1.7 retrieving revision 1.2 diff -u -d -r1.1.1.7 -r1.2 --- Makefile.in 16 Jan 2002 19:06:21 -0000 1.1.1.7 +++ Makefile.in 14 Dec 2007 20:14:28 -0000 1.2 @@ -1,5 +1,6 @@ sysconfdir = @sysconfdir@ -DEFS = @DLLFLAGS@ -D__WINE__ -DETCDIR="\"$(sysconfdir)\"" +DLLFLAGS = @DLLFLAGS@ +DEFS = -D__WINE__ -DETCDIR="\"$(sysconfdir)\"" TOPSRCDIR = @top_srcdir@ TOPOBJDIR = .. SRCDIR = @srcdir@