summaryrefslogtreecommitdiff
path: root/vtep
diff options
context:
space:
mode:
authorJustin Pettit <jpettit@ovn.org>2017-02-13 17:20:56 -0800
committerJustin Pettit <jpettit@ovn.org>2017-02-13 20:49:55 -0800
commit70969b092f904392dfe44bdf9edeabb0ca84caa8 (patch)
treee45021e02a41c2859c46c9300caedafbcdac40b8 /vtep
parent05ac209a5d3a5e85896f58d16b244e6b2a4cf2d0 (diff)
downloadopenvswitch-70969b092f904392dfe44bdf9edeabb0ca84caa8.tar.gz
Remove build-time generated files when "make clean" is run.
"make clean" should remove all files generated by building a program, while "make distclean" should also remove files generated by configuring the program. Previously some generated files during the build process, such as man pages, were left behind when "make clean" was run. This commit only leaves configuration files after "make clean" is run, and removes all other generated files. Signed-off-by: Justin Pettit <jpettit@ovn.org> Acked-by: Ben Pfaff <blp@ovn.org>
Diffstat (limited to 'vtep')
-rw-r--r--vtep/automake.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/vtep/automake.mk b/vtep/automake.mk
index 02024eb7b..6bcb03188 100644
--- a/vtep/automake.mk
+++ b/vtep/automake.mk
@@ -27,7 +27,7 @@ bin_PROGRAMS += \
MAN_ROOTS += \
vtep/vtep-ctl.8.in
-DISTCLEANFILES += \
+CLEANFILES += \
vtep/vtep-ctl.8
man_MANS += \
@@ -61,13 +61,13 @@ vtep/vtep.pic: vtep/vtep.gv ovsdb/dot2pic
mv $@.tmp $@
VTEP_PIC = vtep/vtep.pic
VTEP_DOT_DIAGRAM_ARG = --er-diagram=$(VTEP_PIC)
-DISTCLEANFILES += vtep/vtep.gv vtep/vtep.pic
+CLEANFILES += vtep/vtep.gv vtep/vtep.pic
endif
endif
# VTEP schema documentation
EXTRA_DIST += vtep/vtep.xml
-DISTCLEANFILES += vtep/vtep.5
+CLEANFILES += vtep/vtep.5
man_MANS += vtep/vtep.5
vtep/vtep.5: \
ovsdb/ovsdb-doc vtep/vtep.xml $(srcdir)/vtep/vtep.ovsschema $(VTEP_PIC)