aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHiltjo Posthuma <hiltjo@codemadness.org>2022-10-04 19:44:47 +0200
committerHiltjo Posthuma <hiltjo@codemadness.org>2022-10-04 19:44:47 +0200
commit265704d73647e0d4823126bbb7ddde1d415a618d (patch)
treefedc0f6430984a048cc37e4ff8f30ae9980c1846
parent35633d45672d14bd798c478c45d1a17064701aa9 (diff)
Makefile: explicit_bzero.c was copied twice (GNU make gives a warning)
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index f4ffbb7..b20fd4e 100644
--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,7 @@ dist: clean
36 @echo creating dist tarball 36 @echo creating dist tarball
37 @mkdir -p slock-${VERSION} 37 @mkdir -p slock-${VERSION}
38 @cp -R LICENSE Makefile README slock.1 config.mk \ 38 @cp -R LICENSE Makefile README slock.1 config.mk \
39 ${SRC} explicit_bzero.c config.def.h arg.h util.h slock-${VERSION} 39 ${SRC} config.def.h arg.h util.h slock-${VERSION}
40 @tar -cf slock-${VERSION}.tar slock-${VERSION} 40 @tar -cf slock-${VERSION}.tar slock-${VERSION}
41 @gzip slock-${VERSION}.tar 41 @gzip slock-${VERSION}.tar
42 @rm -rf slock-${VERSION} 42 @rm -rf slock-${VERSION}