[master] 1e6e2fc97 build: Reintroduce some VMOD boilerplate everywhere

Dridi Boukelmoune dridi.boukelmoune at gmail.com
Thu Jan 7 14:16:07 UTC 2021


commit 1e6e2fc97fff79303a6553d717cf18c6bbbad78d
Author: Dridi Boukelmoune <dridi.boukelmoune at gmail.com>
Date:   Tue Jan 5 18:20:28 2021 +0100

    build: Reintroduce some VMOD boilerplate everywhere
    
    Anything left that would prevent two VMODs to live in the same $(srcdir)
    because it would be defined more than once.

diff --git a/lib/libvcc/vmodtool.py b/lib/libvcc/vmodtool.py
index 12f5ce25a..4735d4322 100755
--- a/lib/libvcc/vmodtool.py
+++ b/lib/libvcc/vmodtool.py
@@ -51,14 +51,7 @@ import time
 AMBOILERPLATE = '''\
 # Generated by vmodtool.py --boilerplate.
 
-AM_LDFLAGS  = $(AM_LT_LDFLAGS)
-
-AM_CPPFLAGS = \\
-\t-I$(top_srcdir)/include \\
-\t-I$(top_srcdir)/bin/varnishd \\
-\t-I$(top_builddir)/include
-
-vmod_LTLIBRARIES = libvmod_XXX.la
+vmod_LTLIBRARIES += libvmod_XXX.la
 
 libvmod_XXX_la_CFLAGS = \\
 \t at SAN_CFLAGS@
@@ -81,9 +74,9 @@ PFX.h vmod_XXX.rst vmod_XXX.man.rst: PFX.c
 PFX.c: $(vmodtool) $(srcdir)/VCC
 \t at PYTHON@ $(vmodtool) $(vmodtoolargs_XXX) $(srcdir)/VCC
 
-EXTRA_DIST = $(srcdir)/VCC automake_boilerplate_XXX.am
+EXTRA_DIST += $(srcdir)/VCC automake_boilerplate_XXX.am
 
-CLEANFILES = $(builddir)/PFX.c $(builddir)/PFX.h \\
+CLEANFILES += $(builddir)/PFX.c $(builddir)/PFX.h \\
 \t$(builddir)/vmod_XXX.rst \\
 \t$(builddir)/vmod_XXX.man.rst
 '''
diff --git a/lib/libvmod_blob/Makefile.am b/lib/libvmod_blob/Makefile.am
index 2ca6384e9..6015d15ca 100644
--- a/lib/libvmod_blob/Makefile.am
+++ b/lib/libvmod_blob/Makefile.am
@@ -1,5 +1,16 @@
 #
 
+AM_LDFLAGS  = $(AM_LT_LDFLAGS)
+
+AM_CPPFLAGS = \
+	-I$(top_srcdir)/include \
+	-I$(top_srcdir)/bin/varnishd \
+	-I$(top_builddir)/include
+
+vmod_LTLIBRARIES =
+EXTRA_DIST =
+CLEANFILES =
+
 libvmod_blob_la_SOURCES = \
 	vmod_blob.c \
 	vmod_blob.h \
diff --git a/lib/libvmod_blob/automake_boilerplate_blob.am b/lib/libvmod_blob/automake_boilerplate_blob.am
index 6bacd717f..e0e88e4ff 100644
--- a/lib/libvmod_blob/automake_boilerplate_blob.am
+++ b/lib/libvmod_blob/automake_boilerplate_blob.am
@@ -1,13 +1,6 @@
 # Generated by vmodtool.py --boilerplate.
 
-AM_LDFLAGS  = $(AM_LT_LDFLAGS)
-
-AM_CPPFLAGS = \
-	-I$(top_srcdir)/include \
-	-I$(top_srcdir)/bin/varnishd \
-	-I$(top_builddir)/include
-
-vmod_LTLIBRARIES = libvmod_blob.la
+vmod_LTLIBRARIES += libvmod_blob.la
 
 libvmod_blob_la_CFLAGS = \
 	@SAN_CFLAGS@
@@ -30,8 +23,8 @@ vcc_blob_if.h vmod_blob.rst vmod_blob.man.rst: vcc_blob_if.c
 vcc_blob_if.c: $(vmodtool) $(srcdir)/vmod_blob.vcc
 	@PYTHON@ $(vmodtool) $(vmodtoolargs_blob) $(srcdir)/vmod_blob.vcc
 
-EXTRA_DIST = $(srcdir)/vmod_blob.vcc automake_boilerplate_blob.am
+EXTRA_DIST += $(srcdir)/vmod_blob.vcc automake_boilerplate_blob.am
 
-CLEANFILES = $(builddir)/vcc_blob_if.c $(builddir)/vcc_blob_if.h \
+CLEANFILES += $(builddir)/vcc_blob_if.c $(builddir)/vcc_blob_if.h \
 	$(builddir)/vmod_blob.rst \
 	$(builddir)/vmod_blob.man.rst
diff --git a/lib/libvmod_cookie/Makefile.am b/lib/libvmod_cookie/Makefile.am
index b85531aed..fe762a186 100644
--- a/lib/libvmod_cookie/Makefile.am
+++ b/lib/libvmod_cookie/Makefile.am
@@ -1,3 +1,14 @@
+AM_LDFLAGS  = $(AM_LT_LDFLAGS)
+
+AM_CPPFLAGS = \
+	-I$(top_srcdir)/include \
+	-I$(top_srcdir)/bin/varnishd \
+	-I$(top_builddir)/include
+
+vmod_LTLIBRARIES =
+EXTRA_DIST =
+CLEANFILES =
+
 libvmod_cookie_la_SOURCES = \
 	vmod_cookie.c
 
diff --git a/lib/libvmod_cookie/automake_boilerplate_cookie.am b/lib/libvmod_cookie/automake_boilerplate_cookie.am
index 1129f2aea..9c2f4822d 100644
--- a/lib/libvmod_cookie/automake_boilerplate_cookie.am
+++ b/lib/libvmod_cookie/automake_boilerplate_cookie.am
@@ -1,13 +1,6 @@
 # Generated by vmodtool.py --boilerplate.
 
-AM_LDFLAGS  = $(AM_LT_LDFLAGS)
-
-AM_CPPFLAGS = \
-	-I$(top_srcdir)/include \
-	-I$(top_srcdir)/bin/varnishd \
-	-I$(top_builddir)/include
-
-vmod_LTLIBRARIES = libvmod_cookie.la
+vmod_LTLIBRARIES += libvmod_cookie.la
 
 libvmod_cookie_la_CFLAGS = \
 	@SAN_CFLAGS@
@@ -30,8 +23,8 @@ vcc_cookie_if.h vmod_cookie.rst vmod_cookie.man.rst: vcc_cookie_if.c
 vcc_cookie_if.c: $(vmodtool) $(srcdir)/vmod_cookie.vcc
 	@PYTHON@ $(vmodtool) $(vmodtoolargs_cookie) $(srcdir)/vmod_cookie.vcc
 
-EXTRA_DIST = $(srcdir)/vmod_cookie.vcc automake_boilerplate_cookie.am
+EXTRA_DIST += $(srcdir)/vmod_cookie.vcc automake_boilerplate_cookie.am
 
-CLEANFILES = $(builddir)/vcc_cookie_if.c $(builddir)/vcc_cookie_if.h \
+CLEANFILES += $(builddir)/vcc_cookie_if.c $(builddir)/vcc_cookie_if.h \
 	$(builddir)/vmod_cookie.rst \
 	$(builddir)/vmod_cookie.man.rst
diff --git a/lib/libvmod_debug/Makefile.am b/lib/libvmod_debug/Makefile.am
index bcd29af6f..ccb866ba1 100644
--- a/lib/libvmod_debug/Makefile.am
+++ b/lib/libvmod_debug/Makefile.am
@@ -1,5 +1,16 @@
 #
 
+AM_LDFLAGS  = $(AM_LT_LDFLAGS)
+
+AM_CPPFLAGS = \
+	-I$(top_srcdir)/include \
+	-I$(top_srcdir)/bin/varnishd \
+	-I$(top_builddir)/include
+
+vmod_LTLIBRARIES =
+EXTRA_DIST =
+CLEANFILES =
+
 libvmod_debug_la_SOURCES = \
 	vmod_debug.c \
 	vmod_debug_obj.c \
diff --git a/lib/libvmod_debug/automake_boilerplate_debug.am b/lib/libvmod_debug/automake_boilerplate_debug.am
index 619ebcef4..c3f2a4a46 100644
--- a/lib/libvmod_debug/automake_boilerplate_debug.am
+++ b/lib/libvmod_debug/automake_boilerplate_debug.am
@@ -1,13 +1,6 @@
 # Generated by vmodtool.py --boilerplate.
 
-AM_LDFLAGS  = $(AM_LT_LDFLAGS)
-
-AM_CPPFLAGS = \
-	-I$(top_srcdir)/include \
-	-I$(top_srcdir)/bin/varnishd \
-	-I$(top_builddir)/include
-
-vmod_LTLIBRARIES = libvmod_debug.la
+vmod_LTLIBRARIES += libvmod_debug.la
 
 libvmod_debug_la_CFLAGS = \
 	@SAN_CFLAGS@
@@ -30,8 +23,8 @@ vcc_debug_if.h vmod_debug.rst vmod_debug.man.rst: vcc_debug_if.c
 vcc_debug_if.c: $(vmodtool) $(srcdir)/vmod_debug.vcc
 	@PYTHON@ $(vmodtool) $(vmodtoolargs_debug) $(srcdir)/vmod_debug.vcc
 
-EXTRA_DIST = $(srcdir)/vmod_debug.vcc automake_boilerplate_debug.am
+EXTRA_DIST += $(srcdir)/vmod_debug.vcc automake_boilerplate_debug.am
 
-CLEANFILES = $(builddir)/vcc_debug_if.c $(builddir)/vcc_debug_if.h \
+CLEANFILES += $(builddir)/vcc_debug_if.c $(builddir)/vcc_debug_if.h \
 	$(builddir)/vmod_debug.rst \
 	$(builddir)/vmod_debug.man.rst
diff --git a/lib/libvmod_directors/Makefile.am b/lib/libvmod_directors/Makefile.am
index f9dc599c0..c461639bc 100644
--- a/lib/libvmod_directors/Makefile.am
+++ b/lib/libvmod_directors/Makefile.am
@@ -1,5 +1,16 @@
 #
 
+AM_LDFLAGS  = $(AM_LT_LDFLAGS)
+
+AM_CPPFLAGS = \
+	-I$(top_srcdir)/include \
+	-I$(top_srcdir)/bin/varnishd \
+	-I$(top_builddir)/include
+
+vmod_LTLIBRARIES =
+EXTRA_DIST =
+CLEANFILES =
+
 libvmod_directors_la_SOURCES = \
 	vdir.c \
 	vdir.h \
diff --git a/lib/libvmod_directors/automake_boilerplate_directors.am b/lib/libvmod_directors/automake_boilerplate_directors.am
index 7f52f7dca..0f6869805 100644
--- a/lib/libvmod_directors/automake_boilerplate_directors.am
+++ b/lib/libvmod_directors/automake_boilerplate_directors.am
@@ -1,13 +1,6 @@
 # Generated by vmodtool.py --boilerplate.
 
-AM_LDFLAGS  = $(AM_LT_LDFLAGS)
-
-AM_CPPFLAGS = \
-	-I$(top_srcdir)/include \
-	-I$(top_srcdir)/bin/varnishd \
-	-I$(top_builddir)/include
-
-vmod_LTLIBRARIES = libvmod_directors.la
+vmod_LTLIBRARIES += libvmod_directors.la
 
 libvmod_directors_la_CFLAGS = \
 	@SAN_CFLAGS@
@@ -30,8 +23,8 @@ vcc_directors_if.h vmod_directors.rst vmod_directors.man.rst: vcc_directors_if.c
 vcc_directors_if.c: $(vmodtool) $(srcdir)/vmod_directors.vcc
 	@PYTHON@ $(vmodtool) $(vmodtoolargs_directors) $(srcdir)/vmod_directors.vcc
 
-EXTRA_DIST = $(srcdir)/vmod_directors.vcc automake_boilerplate_directors.am
+EXTRA_DIST += $(srcdir)/vmod_directors.vcc automake_boilerplate_directors.am
 
-CLEANFILES = $(builddir)/vcc_directors_if.c $(builddir)/vcc_directors_if.h \
+CLEANFILES += $(builddir)/vcc_directors_if.c $(builddir)/vcc_directors_if.h \
 	$(builddir)/vmod_directors.rst \
 	$(builddir)/vmod_directors.man.rst
diff --git a/lib/libvmod_proxy/Makefile.am b/lib/libvmod_proxy/Makefile.am
index c98a060f8..c96d8c8d1 100644
--- a/lib/libvmod_proxy/Makefile.am
+++ b/lib/libvmod_proxy/Makefile.am
@@ -1,5 +1,16 @@
 #
 
+AM_LDFLAGS  = $(AM_LT_LDFLAGS)
+
+AM_CPPFLAGS = \
+	-I$(top_srcdir)/include \
+	-I$(top_srcdir)/bin/varnishd \
+	-I$(top_builddir)/include
+
+vmod_LTLIBRARIES =
+EXTRA_DIST =
+CLEANFILES =
+
 libvmod_proxy_la_SOURCES = \
 	vmod_proxy.c
 
diff --git a/lib/libvmod_proxy/automake_boilerplate_proxy.am b/lib/libvmod_proxy/automake_boilerplate_proxy.am
index bd3802fd3..9e1ae138a 100644
--- a/lib/libvmod_proxy/automake_boilerplate_proxy.am
+++ b/lib/libvmod_proxy/automake_boilerplate_proxy.am
@@ -1,13 +1,6 @@
 # Generated by vmodtool.py --boilerplate.
 
-AM_LDFLAGS  = $(AM_LT_LDFLAGS)
-
-AM_CPPFLAGS = \
-	-I$(top_srcdir)/include \
-	-I$(top_srcdir)/bin/varnishd \
-	-I$(top_builddir)/include
-
-vmod_LTLIBRARIES = libvmod_proxy.la
+vmod_LTLIBRARIES += libvmod_proxy.la
 
 libvmod_proxy_la_CFLAGS = \
 	@SAN_CFLAGS@
@@ -30,8 +23,8 @@ vcc_proxy_if.h vmod_proxy.rst vmod_proxy.man.rst: vcc_proxy_if.c
 vcc_proxy_if.c: $(vmodtool) $(srcdir)/vmod_proxy.vcc
 	@PYTHON@ $(vmodtool) $(vmodtoolargs_proxy) $(srcdir)/vmod_proxy.vcc
 
-EXTRA_DIST = $(srcdir)/vmod_proxy.vcc automake_boilerplate_proxy.am
+EXTRA_DIST += $(srcdir)/vmod_proxy.vcc automake_boilerplate_proxy.am
 
-CLEANFILES = $(builddir)/vcc_proxy_if.c $(builddir)/vcc_proxy_if.h \
+CLEANFILES += $(builddir)/vcc_proxy_if.c $(builddir)/vcc_proxy_if.h \
 	$(builddir)/vmod_proxy.rst \
 	$(builddir)/vmod_proxy.man.rst
diff --git a/lib/libvmod_purge/Makefile.am b/lib/libvmod_purge/Makefile.am
index 7899bb056..8af2b1475 100644
--- a/lib/libvmod_purge/Makefile.am
+++ b/lib/libvmod_purge/Makefile.am
@@ -1,5 +1,16 @@
 #
 
+AM_LDFLAGS  = $(AM_LT_LDFLAGS)
+
+AM_CPPFLAGS = \
+	-I$(top_srcdir)/include \
+	-I$(top_srcdir)/bin/varnishd \
+	-I$(top_builddir)/include
+
+vmod_LTLIBRARIES =
+EXTRA_DIST =
+CLEANFILES =
+
 libvmod_purge_la_SOURCES = \
 	vmod_purge.c
 
diff --git a/lib/libvmod_purge/automake_boilerplate_purge.am b/lib/libvmod_purge/automake_boilerplate_purge.am
index e3ec8bf65..3256cd271 100644
--- a/lib/libvmod_purge/automake_boilerplate_purge.am
+++ b/lib/libvmod_purge/automake_boilerplate_purge.am
@@ -1,13 +1,6 @@
 # Generated by vmodtool.py --boilerplate.
 
-AM_LDFLAGS  = $(AM_LT_LDFLAGS)
-
-AM_CPPFLAGS = \
-	-I$(top_srcdir)/include \
-	-I$(top_srcdir)/bin/varnishd \
-	-I$(top_builddir)/include
-
-vmod_LTLIBRARIES = libvmod_purge.la
+vmod_LTLIBRARIES += libvmod_purge.la
 
 libvmod_purge_la_CFLAGS = \
 	@SAN_CFLAGS@
@@ -30,8 +23,8 @@ vcc_purge_if.h vmod_purge.rst vmod_purge.man.rst: vcc_purge_if.c
 vcc_purge_if.c: $(vmodtool) $(srcdir)/vmod_purge.vcc
 	@PYTHON@ $(vmodtool) $(vmodtoolargs_purge) $(srcdir)/vmod_purge.vcc
 
-EXTRA_DIST = $(srcdir)/vmod_purge.vcc automake_boilerplate_purge.am
+EXTRA_DIST += $(srcdir)/vmod_purge.vcc automake_boilerplate_purge.am
 
-CLEANFILES = $(builddir)/vcc_purge_if.c $(builddir)/vcc_purge_if.h \
+CLEANFILES += $(builddir)/vcc_purge_if.c $(builddir)/vcc_purge_if.h \
 	$(builddir)/vmod_purge.rst \
 	$(builddir)/vmod_purge.man.rst
diff --git a/lib/libvmod_std/Makefile.am b/lib/libvmod_std/Makefile.am
index 9126fd613..bb922ea97 100644
--- a/lib/libvmod_std/Makefile.am
+++ b/lib/libvmod_std/Makefile.am
@@ -1,5 +1,16 @@
 #
 
+AM_LDFLAGS  = $(AM_LT_LDFLAGS)
+
+AM_CPPFLAGS = \
+	-I$(top_srcdir)/include \
+	-I$(top_srcdir)/bin/varnishd \
+	-I$(top_builddir)/include
+
+vmod_LTLIBRARIES =
+EXTRA_DIST =
+CLEANFILES =
+
 libvmod_std_la_SOURCES = \
 	vmod_std.c \
 	vmod_std_conversions.c \
diff --git a/lib/libvmod_std/automake_boilerplate_std.am b/lib/libvmod_std/automake_boilerplate_std.am
index f52815531..777280cf2 100644
--- a/lib/libvmod_std/automake_boilerplate_std.am
+++ b/lib/libvmod_std/automake_boilerplate_std.am
@@ -1,13 +1,6 @@
 # Generated by vmodtool.py --boilerplate.
 
-AM_LDFLAGS  = $(AM_LT_LDFLAGS)
-
-AM_CPPFLAGS = \
-	-I$(top_srcdir)/include \
-	-I$(top_srcdir)/bin/varnishd \
-	-I$(top_builddir)/include
-
-vmod_LTLIBRARIES = libvmod_std.la
+vmod_LTLIBRARIES += libvmod_std.la
 
 libvmod_std_la_CFLAGS = \
 	@SAN_CFLAGS@
@@ -30,8 +23,8 @@ vcc_std_if.h vmod_std.rst vmod_std.man.rst: vcc_std_if.c
 vcc_std_if.c: $(vmodtool) $(srcdir)/vmod_std.vcc
 	@PYTHON@ $(vmodtool) $(vmodtoolargs_std) $(srcdir)/vmod_std.vcc
 
-EXTRA_DIST = $(srcdir)/vmod_std.vcc automake_boilerplate_std.am
+EXTRA_DIST += $(srcdir)/vmod_std.vcc automake_boilerplate_std.am
 
-CLEANFILES = $(builddir)/vcc_std_if.c $(builddir)/vcc_std_if.h \
+CLEANFILES += $(builddir)/vcc_std_if.c $(builddir)/vcc_std_if.h \
 	$(builddir)/vmod_std.rst \
 	$(builddir)/vmod_std.man.rst
diff --git a/lib/libvmod_unix/Makefile.am b/lib/libvmod_unix/Makefile.am
index c68108aef..db4a1cec5 100644
--- a/lib/libvmod_unix/Makefile.am
+++ b/lib/libvmod_unix/Makefile.am
@@ -1,5 +1,16 @@
 #
 
+AM_LDFLAGS  = $(AM_LT_LDFLAGS)
+
+AM_CPPFLAGS = \
+	-I$(top_srcdir)/include \
+	-I$(top_srcdir)/bin/varnishd \
+	-I$(top_builddir)/include
+
+vmod_LTLIBRARIES =
+EXTRA_DIST =
+CLEANFILES =
+
 libvmod_unix_la_SOURCES = \
 	vmod_unix.c \
 	cred_compat.h
diff --git a/lib/libvmod_unix/automake_boilerplate_unix.am b/lib/libvmod_unix/automake_boilerplate_unix.am
index e0b5eca25..6281665b2 100644
--- a/lib/libvmod_unix/automake_boilerplate_unix.am
+++ b/lib/libvmod_unix/automake_boilerplate_unix.am
@@ -1,13 +1,6 @@
 # Generated by vmodtool.py --boilerplate.
 
-AM_LDFLAGS  = $(AM_LT_LDFLAGS)
-
-AM_CPPFLAGS = \
-	-I$(top_srcdir)/include \
-	-I$(top_srcdir)/bin/varnishd \
-	-I$(top_builddir)/include
-
-vmod_LTLIBRARIES = libvmod_unix.la
+vmod_LTLIBRARIES += libvmod_unix.la
 
 libvmod_unix_la_CFLAGS = \
 	@SAN_CFLAGS@
@@ -30,8 +23,8 @@ vcc_unix_if.h vmod_unix.rst vmod_unix.man.rst: vcc_unix_if.c
 vcc_unix_if.c: $(vmodtool) $(srcdir)/vmod_unix.vcc
 	@PYTHON@ $(vmodtool) $(vmodtoolargs_unix) $(srcdir)/vmod_unix.vcc
 
-EXTRA_DIST = $(srcdir)/vmod_unix.vcc automake_boilerplate_unix.am
+EXTRA_DIST += $(srcdir)/vmod_unix.vcc automake_boilerplate_unix.am
 
-CLEANFILES = $(builddir)/vcc_unix_if.c $(builddir)/vcc_unix_if.h \
+CLEANFILES += $(builddir)/vcc_unix_if.c $(builddir)/vcc_unix_if.h \
 	$(builddir)/vmod_unix.rst \
 	$(builddir)/vmod_unix.man.rst
diff --git a/lib/libvmod_vtc/Makefile.am b/lib/libvmod_vtc/Makefile.am
index 557156f6e..32fb0aaa6 100644
--- a/lib/libvmod_vtc/Makefile.am
+++ b/lib/libvmod_vtc/Makefile.am
@@ -1,5 +1,16 @@
 #
 
+AM_LDFLAGS  = $(AM_LT_LDFLAGS)
+
+AM_CPPFLAGS = \
+	-I$(top_srcdir)/include \
+	-I$(top_srcdir)/bin/varnishd \
+	-I$(top_builddir)/include
+
+vmod_LTLIBRARIES =
+EXTRA_DIST =
+CLEANFILES =
+
 libvmod_vtc_la_SOURCES = \
 	vmod_vtc.c
 
diff --git a/lib/libvmod_vtc/automake_boilerplate_vtc.am b/lib/libvmod_vtc/automake_boilerplate_vtc.am
index 7b883cb02..9b71914b0 100644
--- a/lib/libvmod_vtc/automake_boilerplate_vtc.am
+++ b/lib/libvmod_vtc/automake_boilerplate_vtc.am
@@ -1,13 +1,6 @@
 # Generated by vmodtool.py --boilerplate.
 
-AM_LDFLAGS  = $(AM_LT_LDFLAGS)
-
-AM_CPPFLAGS = \
-	-I$(top_srcdir)/include \
-	-I$(top_srcdir)/bin/varnishd \
-	-I$(top_builddir)/include
-
-vmod_LTLIBRARIES = libvmod_vtc.la
+vmod_LTLIBRARIES += libvmod_vtc.la
 
 libvmod_vtc_la_CFLAGS = \
 	@SAN_CFLAGS@
@@ -30,8 +23,8 @@ vcc_vtc_if.h vmod_vtc.rst vmod_vtc.man.rst: vcc_vtc_if.c
 vcc_vtc_if.c: $(vmodtool) $(srcdir)/vmod_vtc.vcc
 	@PYTHON@ $(vmodtool) $(vmodtoolargs_vtc) $(srcdir)/vmod_vtc.vcc
 
-EXTRA_DIST = $(srcdir)/vmod_vtc.vcc automake_boilerplate_vtc.am
+EXTRA_DIST += $(srcdir)/vmod_vtc.vcc automake_boilerplate_vtc.am
 
-CLEANFILES = $(builddir)/vcc_vtc_if.c $(builddir)/vcc_vtc_if.h \
+CLEANFILES += $(builddir)/vcc_vtc_if.c $(builddir)/vcc_vtc_if.h \
 	$(builddir)/vmod_vtc.rst \
 	$(builddir)/vmod_vtc.man.rst


More information about the varnish-commit mailing list