CVS: winex/dlls Makedll.rules.in,1.6,1.7
[email protected] 14 Dec 2007 20:13:11 -0000
| Newsgroups | gmane.comp.emulators.winex.cvs |
|---|---|
| Message-ID | <[email protected]> |
Subject: winex/dlls Makedll.rules.in,1.6,1.7Update of /var/lib/cvsd/cvsroot/winex/dlls In directory agravaine:/tmp/cvs-serv14470/dlls Modified Files: Makedll.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: Makedll.rules.in =================================================================== RCS file: /var/lib/cvsd/cvsroot/winex/dlls/Makedll.rules.in,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- Makedll.rules.in 29 Mar 2007 14:05:50 -0000 1.6 +++ Makedll.rules.in 14 Dec 2007 20:13:09 -0000 1.7 @@ -9,7 +9,8 @@ # plus all variables required by the global Make.rules.in # -DEFS = @DLLFLAGS@ -D__WINE__ $(EXTRADEFS) +DLLFLAGS = @DLLFLAGS@ +DEFS = -D__WINE__ $(EXTRADEFS) LIBEXT = @LIBEXT@ IMPORTLIBS = $(IMPORTS:%=$(DLLDIR)/lib%.$(LIBEXT)) SPEC_SRCS = $(ALTNAMES:%=%.spec)