aboutsummaryrefslogtreecommitdiffstats
path: root/codecs/Makefile.nmake
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2013-12-01 03:53:57 +0000
committerMichael Mann <mmann78@netscape.net>2013-12-01 03:53:57 +0000
commit9972e5f24ad5931bdc8644e99e90db26fc0104a7 (patch)
treec818f59dc1a8d79008a66887d4450c44a1b4071b /codecs/Makefile.nmake
parent4e2b6b13f6c71a81671fc4fb589f7919a81b931b (diff)
Move codecs.[ch] out of epan and into codecs directory.
This may break easy_codec plugins, but it appears a better/more consistent way is needed to register codecs. See Guy's comments in bug 7893 (https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=7893) svn path=/trunk/; revision=53686
Diffstat (limited to 'codecs/Makefile.nmake')
-rw-r--r--codecs/Makefile.nmake5
1 files changed, 5 insertions, 0 deletions
diff --git a/codecs/Makefile.nmake b/codecs/Makefile.nmake
index f335a48e5c..fd1e638d4e 100644
--- a/codecs/Makefile.nmake
+++ b/codecs/Makefile.nmake
@@ -14,6 +14,7 @@ CFLAGS=$(WARNINGS_ARE_ERRORS) $(STANDARD_CFLAGS) \
$(CC) $(CFLAGS) -Fd.\ -c $<
CODEC_OBJECTS= \
+ codecs.obj \
G711udecode.obj \
G711adecode.obj \
G722decode.obj \
@@ -25,6 +26,9 @@ codecs.lib : $(CODEC_OBJECTS)
link /lib /out:codecs.lib $(CODEC_OBJECTS)
+codecs.obj: codecs.c codecs.h
+ $(CC) $(CFLAGS) -Fd.\ -c codecs.c /Fo%|fF.obj
+
G711adecode.obj: G711a\G711adecode.c G711a\G711adecode.h G711a\G711atable.h
$(CC) $(CFLAGS) -Fd.\ -c G711a\G711adecode.c /Fo%|fF.obj
@@ -49,6 +53,7 @@ maintainer-clean: distclean
checkapi:
$(PERL) ../tools/checkAPIs.pl -g abort -g termoutput -build \
+ codecs.c \
G711a/G711adecode.c \
G711u/G711udecode.c \
G722/G722decode.c \