aboutsummaryrefslogtreecommitdiffstats
path: root/ui/cli
diff options
context:
space:
mode:
authorJoão Valverde <joao.valverde@tecnico.ulisboa.pt>2017-12-11 19:32:31 +0000
committerJoão Valverde <j@v6e.pt>2017-12-11 20:21:09 +0000
commit7617af1d8994289da23402b67ccea79e32881888 (patch)
treec3b6fc881ee750015cc7d28eaed650fb0e2a929f /ui/cli
parent51300b3c834a3877d567fb57ae78ec74ec8ba80d (diff)
Fix make distcheck
Change-Id: I0c5a31d423d19071dc6ed0a42b064271e5f63fd2 Reviewed-on: https://code.wireshark.org/review/24769 Reviewed-by: João Valverde <j@v6e.pt>
Diffstat (limited to 'ui/cli')
-rw-r--r--ui/cli/Makefile.am30
1 files changed, 8 insertions, 22 deletions
diff --git a/ui/cli/Makefile.am b/ui/cli/Makefile.am
index 0f6c0708b9..b628d09e82 100644
--- a/ui/cli/Makefile.am
+++ b/ui/cli/Makefile.am
@@ -26,21 +26,10 @@ AM_CPPFLAGS = $(INCLUDEDIRS) $(WS_CPPFLAGS) $(GLIB_CFLAGS) \
noinst_LIBRARIES = libcliui.a
-# Generated header files that we want in the distribution.
-GENERATED_HEADER_FILES =
-
-# Generated C source files that we want in the distribution.
-GENERATED_C_FILES = \
+# Generated files not in the distribution.
+NODIST_GENERATED_FILES = \
tshark-tap-register.c
-# All the generated files.
-GENERATED_FILES = \
- $(GENERATED_HEADER_FILES) \
- $(GENERATED_C_FILES)
-
-# Files that generate compileable files
-GENERATOR_FILES =
-
# sources for TShark taps
TSHARK_TAP_SRC = \
tap-camelsrt.c \
@@ -83,19 +72,16 @@ noinst_HEADERS = \
# All sources that should be put in the source distribution tarball
libcliui_a_SOURCES = \
- $(TSHARK_TAP_SRC) \
- $(noinst_HEADERS) \
- $(GENERATED_HEADER_FILES) \
- $(GENERATED_C_FILES)
+ $(TSHARK_TAP_SRC)
-libcliui_a_DEPENDENCIES =
+nodist_libcliui_a_SOURCES = \
+ $(NODIST_GENERATED_FILES)
EXTRA_DIST = \
- .editorconfig \
- $(GENERATOR_FILES)
+ .editorconfig
-MAINTAINERCLEANFILES = \
- $(GENERATED_FILES)
+DISTCLEANFILES = \
+ $(NODIST_GENERATED_FILES)
tshark-tap-register.c: $(TSHARK_TAP_SRC) ../make-taps
$(AM_V_GEN)../make-taps $@ $(filter %.c,$^)