Run checkapi on the dissector header files
[obnox/wireshark/wip.git] / plugins / tpg / Makefile.nmake
1 #
2 # $Id$
3 #
4
5 include ..\..\config.nmake
6 include <win32.mak>
7
8 ############### no need to modify below this line #########
9
10 LEMON=..\..\tools\lemon
11
12 CFLAGS=/WX /DHAVE_CONFIG_H /I../.. $(GLIB_CFLAGS) /I$(LEMON)\
13         /I$(PCAP_DIR)\include -D_U_="" $(LOCAL_CFLAGS)
14
15 .c.obj::
16         $(CC) $(CFLAGS) -Fdmate.pdb -c $<
17
18 LDFLAGS = $(PLUGIN_LDFLAGS)
19
20 !IFDEF ENABLE_LIBWIRESHARK
21 LINK_PLUGIN_WITH=..\..\epan\libwireshark.lib
22 CFLAGS=/D_NEED_VAR_IMPORT_ $(CFLAGS)
23
24 OBJECTS=packet-mate.obj\
25                 mate_setup.obj\
26                 mate_runtime.obj\
27                 mate_util.obj\
28                 mate_plugin.obj\
29                 mate_grammar.obj\
30                 mate_parser.obj
31
32 mate.dll mate.exp mate.lib : $(OBJECTS) $(LINK_PLUGIN_WITH)
33         link -dll /out:mate.dll $(LDFLAGS) $(OBJECTS) $(LINK_PLUGIN_WITH) \
34         $(GLIB_LIBS)
35
36 !ENDIF
37
38 clean:
39         rm -f $(OBJECTS) mate.dll mate.exp mate.lib *.pdb
40
41 #
42 # We remove the generated files with "distclean" because one of them,
43 # "mate_parser.c", needs different #includes for UN*X and Windows
44 # (UN*X versions of Flex make it include <unistd.h>, but that's a
45 # UN*X-only header), so if you're going to build from source, you need
46 # to build "mate_parser.c" from "mate_parser.l" with Flex.
47 # This might not be necessary for "mate_grammar.{c,h}", but we handle them
48 # the same for now.
49 #
50 distclean: clean
51         rm -f mate_parser.c mate_grammar.c mate_grammar.h mate_grammar.out
52
53 maintainer-clean: distclean
54
55 mate_parser.c : mate_parser.l
56         $(LEX) -Pdf_ -omate_parser.c mate_parser.l
57
58 mate_grammar.h : mate_grammar.c
59 mate_grammar.c : mate_grammar.lemon $(LEMON)\lemon.exe
60         $(LEMON)\lemon.exe t=$(LEMON)\lempar.c mate_grammar.lemon
61
62 $(LEMON)\lemon.exe:
63         cd ../../tools
64         $(MAKE) /$(MAKEFLAGS) -f makefile.nmake lemon
65         cd ../plugins/mate
66
67 checkapi:
68         $(PERL) ../../tools/checkAPIs.pl -g abort -g termoutput $(DISSECTOR_SRC) $(DISSECTOR_INCLUDES)