mirror of
https://gitlab.gnome.org/GNOME/libxml2
synced 2025-03-28 21:33:13 +00:00
win32: allow passing *FLAGS on command line
nmake is a primitive tool, so this is a primitive implementation: append EXTRA_CFLAGS etc. variables. Command line variables should be appended to allow overriding flags set in the makefile. It doesn't work to pass in CFLAGS like in make because that always overrides the assignments in the makefile.
This commit is contained in:
parent
4f2aee18f6
commit
a230b728f1
@ -106,6 +106,11 @@ CFLAGS = $(CFLAGS) /D "NDEBUG" /O2
|
||||
LDFLAGS = $(LDFLAGS)
|
||||
!endif
|
||||
|
||||
# append CFLAGS etc. passed on command line
|
||||
CPPFLAGS = $(CPPFLAGS) $(EXTRA_CPPFLAGS)
|
||||
CFLAGS = $(CFLAGS) $(EXTRA_CFLAGS)
|
||||
LDFLAGS = $(LDFLAGS) $(EXTRA_LDFLAGS)
|
||||
|
||||
# Libxml object files.
|
||||
XML_OBJS = $(XML_INTDIR)\buf.obj\
|
||||
$(XML_INTDIR)\c14n.obj\
|
||||
|
Loading…
x
Reference in New Issue
Block a user