summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarkus Teich <markus.teich@stusta.mhn.de>2016-11-20 00:59:19 +0100
committerMarkus Teich <markus.teich@stusta.mhn.de>2016-11-20 01:01:47 +0100
commitd5da84cf5adce2f30ed348b631861cc089f3b559 (patch)
treeaabb58d5d50bf767dcd4155dea16353ed19c8b65
parentae96836f90c3652fd0907e0632ddd4591d5716fa (diff)
downloadslock-d5da84cf5adce2f30ed348b631861cc089f3b559.tar.gz
add arg.h and util.h to Makefile
-rw-r--r--Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 8b3e248..f4ffbb7 100644
--- a/Makefile
+++ b/Makefile
@@ -18,7 +18,7 @@ options:
@echo CC $<
@${CC} -c ${CFLAGS} $<
-${OBJ}: config.h config.mk
+${OBJ}: config.h config.mk arg.h util.h
config.h:
@echo creating $@ from config.def.h
@@ -35,8 +35,8 @@ clean:
dist: clean
@echo creating dist tarball
@mkdir -p slock-${VERSION}
- @cp -R LICENSE Makefile README config.def.h config.mk ${SRC} \
- explicit_bzero.c slock.1 slock-${VERSION}
+ @cp -R LICENSE Makefile README slock.1 config.mk \
+ ${SRC} explicit_bzero.c config.def.h arg.h util.h slock-${VERSION}
@tar -cf slock-${VERSION}.tar slock-${VERSION}
@gzip slock-${VERSION}.tar
@rm -rf slock-${VERSION}