Add missing make dependency in `install' target
The `install' target was missing the existence of a compiled executable in the directory as a dependency, it's been added.
This commit is contained in:
parent
06c238d486
commit
27a087ac3d
2
Makefile
2
Makefile
|
@ -7,7 +7,7 @@ timeoutd: timeoutd.c
|
||||||
clean:
|
clean:
|
||||||
-rm -f timeoutd timeoutd.o
|
-rm -f timeoutd timeoutd.o
|
||||||
|
|
||||||
install: /etc/timeouts
|
install: timeoutd /etc/timeouts
|
||||||
install timeoutd /usr/sbin/timeoutd
|
install timeoutd /usr/sbin/timeoutd
|
||||||
install timeoutd.8 /usr/share/man/man8
|
install timeoutd.8 /usr/share/man/man8
|
||||||
install timeouts.5 /usr/share/man/man5
|
install timeouts.5 /usr/share/man/man5
|
||||||
|
|
Loading…
Reference in a new issue