Makefile: add a dependency on arg.h - ii - irc it, simple FIFO based irc client | |
git clone git://git.suckless.org/ii | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 95963c46ebcafd9542e9cd8e16ee158aca043ce7 | |
parent fd867aebd1b5ccf1b427e55cf0724137461c3ee9 | |
Author: Quentin Rameau <[email protected]> | |
Date: Sun, 3 Dec 2017 22:17:36 +0100 | |
Makefile: add a dependency on arg.h | |
Diffstat: | |
M Makefile | 2 ++ | |
1 file changed, 2 insertions(+), 0 deletions(-) | |
--- | |
diff --git a/Makefile b/Makefile | |
@@ -21,6 +21,8 @@ options: | |
ii: ${OBJ} | |
${CC} -o $@ ${OBJ} ${LDFLAGS} | |
+${OBJ}: arg.h | |
+ | |
install: all | |
mkdir -p ${DESTDIR}${DOCDIR} | |
mkdir -p ${DESTDIR}${BINDIR} |