Add files to CLEANFILES for robust make clean.

At the least, $(BUILT_SOURCES) should be added to CLEANFILES. Also
beneficial is $(api_DATA), and in the case of Java, *.files and *.h.
Also there is a vpp/app/version.h, and some grammar and lex files in
vppapigen.

Change-Id: Ic6d3f2d40ce65e1d9a8b88217fa1f36de393ebb4
Signed-off-by: Burt Silverman <burtms@gmail.com>
This commit is contained in:
Burt Silverman
2017-01-27 15:29:54 -05:00
committed by Dave Barach
parent d4fabb3538
commit 006eb478bb
6 changed files with 11 additions and 1 deletions

View File

@@ -28,6 +28,7 @@ noinst_HEADERS =
dist_bin_SCRIPTS =
lib_LTLIBRARIES =
BUILT_SOURCES =
CLEANFILES =
install-data-local:
@echo "Building vppctl command list..."
@DIR_SEARCH="$(srcdir)" ; \
@@ -115,3 +116,5 @@ BUILT_SOURCES += \
endif # if ENABLE_VLIB
endif # if ENABLE_SVM
CLEANFILES += $(BUILT_SOURCES) $(api_DATA)

View File

@@ -54,3 +54,5 @@ sample_test_plugin_la_SOURCES = sample/sample_test.c sample/sample_plugin.api.h
install-data-hook:
@(cd $(vpppluginsdir) && $(RM) $(vppplugins_LTLIBRARIES))
@(cd $(vppapitestpluginsdir) && $(RM) $(vppapitestplugins_LTLIBRARIES))
CLEANFILES = $(BUILT_SOURCES)

View File

@@ -76,3 +76,4 @@ api_DATA = \
BUILT_SOURCES += \
$(patsubst %.api,%.api.h,$(API_FILES))
CLEANFILES = $(BUILT_SOURCES) $(api_DATA)

View File

@@ -218,7 +218,7 @@ all-local: $(JAR_FILES)
#
# Cleanup
#
CLEANFILES = jvpp-registry.ok $(JAR_FILES) $(BUILT_SOURCES)
CLEANFILES = jvpp-registry.ok $(JAR_FILES) $(BUILT_SOURCES) *.files */*.h
clean-local:
rm -rf $(CLEANDIRS)

View File

@@ -132,4 +132,6 @@ bin_vpp_get_metrics_LDADD = \
libvppinfra.la \
-lpthread -lm -lrt
CLEANFILES += vpp/app/version.h
# vi:syntax=automake

View File

@@ -27,4 +27,6 @@ vppapigen_SOURCES = tools/vppapigen/gram.y tools/vppapigen/lex_e.c tools/vppapig
vppapigen_LDADD = libvppinfra.la
vppapigen_LDFLAGS = -static
CLEANFILES += tools/vppapigen/gram.c tools/vppapigen/gram.h
CLEANFILES += tools/vppapigen/lex_e.c
# vi:syntax=automake