White space changes.
[obnox/wireshark/wip.git] / codecs / Makefile.nmake
1 ## Makefile for building codecs.lib with Microsoft C and nmake
2 ## Use: $(MAKE) /$(MAKEFLAGS) -f makefile.nmake
3 #
4 # $Id$
5
6 include ..\config.nmake
7
8 ############### no need to modify below this line #########
9
10 CFLAGS=$(WARNINGS_ARE_ERRORS) $(STANDARD_CFLAGS) \
11         $(GLIB_CFLAGS)
12
13 .c.obj::
14         $(CC) $(CFLAGS)  -Fd.\ -c $<
15
16 CODEC_OBJECTS= \
17         G711udecode.obj \
18         G711adecode.obj
19
20
21 codecs.lib      :  $(CODEC_OBJECTS)
22         link /lib /out:codecs.lib $(CODEC_OBJECTS)
23
24
25 G711adecode.obj: G711a\G711adecode.c G711a\G711adecode.h G711a\G711atable.h
26         $(CC) $(CFLAGS) -Fd.\ -c G711a\G711adecode.c /Fo%|fF.obj
27
28 G711udecode.obj: G711u\G711udecode.c G711u\G711udecode.h G711u\G711utable.h
29         $(CC) $(CFLAGS) -Fd.\ -c G711u\G711udecode.c /Fo%|fF.obj
30
31 clean:
32         rm -f $(CODEC_OBJECTS) codecs.lib *.pdb *.sbr
33
34 distclean: clean
35
36 maintainer-clean: distclean
37
38 checkapi:
39         $(PERL) ../tools/checkAPIs.pl -g abort -g termoutput \
40         G711a/G711adecode.c \
41         G711u/G711udecode.c