aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/Makefile.nmake
diff options
context:
space:
mode:
authorBill Meier <wmeier@newsguy.com>2011-02-02 01:19:53 +0000
committerBill Meier <wmeier@newsguy.com>2011-02-02 01:19:53 +0000
commitd3efa3ed9f5955bbb5924ce6beeeeb9c082d0b22 (patch)
tree5d9b2fd59c1e3d5a929f07797195a7b93b88c549 /codecs/Makefile.nmake
parentfa5efc04e307dfbef2f991d2a9965707cb74d7a8 (diff)
A bit of Windows makefiles rework and cleanup:
- Define macros for certain CFLAGS in config.nmake iso of having defs in each makefile; a. -DHAVE_CONFIG_H and -D_U_="" are now part of a macro named STANDARD_CFLAGS; b. -WX has been replaced by WARNINGS_ARE_ERRORS (defined as -WX in config.nmake) (This allows disabling "Warnings as Errors" by just changing config.nmake) c. CVARSDLL definitions (not usage) have been removed from the various makefiles. XXX: It appears the usage of CVARSDLL can also be removed (not yet done) since: -DWIN32 and -DNULL=0 do not appear to be needed (any more); -D_MT and _D_DLL are not needed since /MP causes these definitions. d. Define a macro WARNINGS_CFLAGS with additional specific compiler (level4) warnings to be enabled. E.G., 4295: array is too small to include a terminating null character - config.nmake: reformat some long lines for readability; - plugins\Makefile.nmake: clean-deps does nothing: remove it (and usage in top-level makefile); - dissectors/Makefile.nmake: test to enable packet-rrc.obj target needs to include MSVC2010 ... svn path=/trunk/; revision=35747
Diffstat (limited to 'codecs/Makefile.nmake')
-rw-r--r--codecs/Makefile.nmake9
1 files changed, 5 insertions, 4 deletions
diff --git a/codecs/Makefile.nmake b/codecs/Makefile.nmake
index d080954dd4..43f2a7d13f 100644
--- a/codecs/Makefile.nmake
+++ b/codecs/Makefile.nmake
@@ -7,7 +7,8 @@ include ..\config.nmake
############### no need to modify below this line #########
-CFLAGS=-WX -DHAVE_CONFIG_H $(GLIB_CFLAGS) -D_U_="" $(LOCAL_CFLAGS)
+CFLAGS=$(WARNINGS_ARE_ERRORS) $(STANDARD_CFLAGS) \
+ $(GLIB_CFLAGS)
.c.obj::
$(CC) $(CFLAGS) -Fd.\ -c $<
@@ -17,8 +18,8 @@ CODEC_OBJECTS= \
G711adecode.obj
-codecs.lib : $(CODEC_OBJECTS)
- link /lib /out:codecs.lib $(CODEC_OBJECTS)
+codecs.lib : $(CODEC_OBJECTS)
+ link /lib /out:codecs.lib $(CODEC_OBJECTS)
G711adecode.obj: G711a\G711adecode.c G711a\G711adecode.h G711a\G711atable.h
@@ -34,7 +35,7 @@ distclean: clean
maintainer-clean: distclean
-checkapi:
+checkapi:
$(PERL) ../tools/checkAPIs.pl -g abort -g termoutput \
G711a/G711adecode.c \
G711u/G711udecode.c