diff options
author | Leah Neukirchen <leah@vuxu.org> | 2020-09-04 20:26:36 +0200 |
---|---|---|
committer | Leah Neukirchen <leah@vuxu.org> | 2020-09-04 20:26:36 +0200 |
commit | 45d9a68be7586272700bd7c4eb03a91f83f044f2 (patch) | |
tree | e997f36c8c1da3948c83cefb97009a62a605e331 | |
parent | dcc35b75676f3bd4617d9c5277c3bf182948bf7f (diff) | |
download | hrmpf-45d9a68be7586272700bd7c4eb03a91f83f044f2.tar.gz hrmpf-45d9a68be7586272700bd7c4eb03a91f83f044f2.tar.xz hrmpf-45d9a68be7586272700bd7c4eb03a91f83f044f2.zip |
Makefile: only clean generated scripts
Closes #5.
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index b1aa5d2..7ec9aa2 100644 --- a/Makefile +++ b/Makefile @@ -27,7 +27,7 @@ install: all install -m644 isolinux/*.cfg* $(DESTDIR)$(SHAREDIR)/void-mklive clean: - -rm -f *.sh + -rm -f $(SCRIPTS) dist: @echo "Building distribution tarball for tag: v$(VERSION) ..." |