aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/Makefile.nmake
diff options
context:
space:
mode:
authorJeff Morriss <jeff.morriss@ulticom.com>2010-11-29 20:53:22 +0000
committerJeff Morriss <jeff.morriss@ulticom.com>2010-11-29 20:53:22 +0000
commit5f3ff94816007879a58e88a203463163de06d3bf (patch)
tree5a70c061e2119b5f98ed8f47a35e8ca384869aee /gtk/Makefile.nmake
parent28fa4266d738a109470c22ebe9b339f53e96f831 (diff)
Move the checkapi targes to Makefile.common. Rename Makefile.nmake's WIRESHARK_GTK_SRC to WIRESHARK_GTK_ALL_SRC to avoid reusing the variable of the same name from Makefile.common; Put DIRTY_GENERATED_C_FILES back in that variable since checkapi is no longer run on it.
svn path=/trunk/; revision=35069
Diffstat (limited to 'gtk/Makefile.nmake')
-rw-r--r--gtk/Makefile.nmake16
1 files changed, 3 insertions, 13 deletions
diff --git a/gtk/Makefile.nmake b/gtk/Makefile.nmake
index 5da46b0ded..760bc34595 100644
--- a/gtk/Makefile.nmake
+++ b/gtk/Makefile.nmake
@@ -28,9 +28,10 @@ include Makefile.common
# if you add files here, be sure to include them also in Makefile.am EXTRA_DIST
-WIRESHARK_GTK_SRC = \
+WIRESHARK_GTK_ALL_SRC = \
$(WIRESHARK_GTK_SRC) \
$(GENERATED_C_FILES) \
+ $(DIRTY_GENERATED_C_FILES) \
capture_if_details_dlg_win32.c \
!IFDEF PORTAUDIO_DIR
!IF "$(PORTAUDIO_VERSION)" == "18"
@@ -56,7 +57,7 @@ WIRESHARK_GTK_SRC = \
WIRESHARK_TAP_OBJECTS = $(WIRESHARK_TAP_SRC:.c=.obj)
-WIRESHARK_GTK_OBJECTS = $(WIRESHARK_GTK_SRC:.c=.obj) $(DIRTY_GENERATED_C_FILES:.c=.obj)
+WIRESHARK_GTK_OBJECTS = $(WIRESHARK_GTK_ALL_SRC:.c=.obj)
libui.lib : ..\config.h $(WIRESHARK_GTK_OBJECTS) $(WIRESHARK_TAP_OBJECTS)
@@ -169,14 +170,3 @@ doxygen.chm:
doxygen: doxygen.cfg doxygen-run doxygen.chm
-checkapi: checkapi-base checkapi-todo
-
-checkapi-base:
- $(PERL) ../tools/checkAPIs.pl -g deprecated-gtk \
- $(WIRESHARK_GTK_SRC) \
- $(WIRESHARK_TAP_SRC)
-
-checkapi-todo:
- $(PERL) ../tools/checkAPIs.pl -M -g deprecated-gtk-todo \
- $(WIRESHARK_GTK_SRC) \
- $(WIRESHARK_TAP_SRC)