summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLudovic Courtès <ludo@gnu.org>2016-12-20 15:13:42 +0100
committerRicardo Wurmus <rekado@elephly.net>2016-12-20 15:21:49 +0100
commita81771f137716c62e7a44355e18ce5487ecf5301 (patch)
treec11019a04a4ef9184cc1268b2b6442a5506eb12b
parentcccbc63950ad061538b1132b3dfef21794d6b780 (diff)
build: Delete all the .service and .conf files upon 'make clean'.v0.12.0
* nix/local.mk (CLEANFILES): Define to add $(nodist_systemdservice_DATA) and $(nodist_upstartjob_DATA).
-rw-r--r--nix/local.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/nix/local.mk b/nix/local.mk
index ab8e798d7e2..eb70d266fbd 100644
--- a/nix/local.mk
+++ b/nix/local.mk
@@ -22,7 +22,7 @@
22# 22#
23 23
24BUILT_SOURCES += %D%/libstore/schema.sql.hh 24BUILT_SOURCES += %D%/libstore/schema.sql.hh
25CLEANFILES += $(BUILT_SOURCES) etc/guix-daemon.service etc/guix-daemon.conf 25CLEANFILES += $(BUILT_SOURCES)
26 26
27noinst_LIBRARIES = libformat.a libutil.a libstore.a 27noinst_LIBRARIES = libformat.a libutil.a libstore.a
28 28
@@ -205,6 +205,10 @@ etc/guix-%.conf: etc/guix-%.conf.in \
205 "$<" > "$@.tmp"; \ 205 "$<" > "$@.tmp"; \
206 mv "$@.tmp" "$@" 206 mv "$@.tmp" "$@"
207 207
208CLEANFILES += \
209 $(nodist_systemdservice_DATA) \
210 $(nodist_upstartjob_DATA)
211
208EXTRA_DIST += \ 212EXTRA_DIST += \
209 %D%/libstore/schema.sql \ 213 %D%/libstore/schema.sql \
210 %D%/AUTHORS \ 214 %D%/AUTHORS \