diff options
author | Jeff Morriss <jeff.morriss@ulticom.com> | 2010-11-29 21:46:53 +0000 |
---|---|---|
committer | Jeff Morriss <jeff.morriss@ulticom.com> | 2010-11-29 21:46:53 +0000 |
commit | 777f6ec3da90cf0e6d6e08d29baa2107ecf0a34c (patch) | |
tree | 4507cd6e0f4e40c11b80b60ad9ea5d9e8614d636 /win32 | |
parent | 623253b010b59f5ef975d705159d782bfbf5bf41 (diff) | |
download | wireshark-777f6ec3da90cf0e6d6e08d29baa2107ecf0a34c.tar.gz wireshark-777f6ec3da90cf0e6d6e08d29baa2107ecf0a34c.tar.bz2 wireshark-777f6ec3da90cf0e6d6e08d29baa2107ecf0a34c.zip |
Fix the checkapi target.
svn path=/trunk/; revision=35071
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile.nmake | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/win32/Makefile.nmake b/win32/Makefile.nmake index 210e12d987..ad528a1cd3 100644 --- a/win32/Makefile.nmake +++ b/win32/Makefile.nmake @@ -18,7 +18,7 @@ CVARSDLL=-DWIN32 -DNULL=0 -D_MT -D_DLL .c.obj:: $(CC) $(CVARSDLL) $(CFLAGS) $(WSUG_CFLAGS) -Fd.\ -c $< - + # if you add files here, be sure to include them also in Makefile.am EXTRA_DIST in the main Wireshark directory WIRESHARK_WIN32_SRC = \ file_dlg_win32.c \ @@ -36,12 +36,6 @@ distclean: clean maintainer-clean: distclean -checkapi: checkapi-base checkapi-todo - -checkapi-base: - file_dlg_win32.c \ - print_win32.c - -checkapi-todo: - file_dlg_win32.c \ - print_win32.c +checkapi: + $(PERL) ../tools/checkAPIs.pl -g deprecated-gtk \ + $(WIRESHARK_WIN32_SRC) |