|
Lines 292-298
install-files: scard-install
Link Here
|
| 292 |
else \ |
292 |
else \ |
| 293 |
echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \ |
293 |
echo "$(DESTDIR)$(sysconfdir)/sshd_config already exists, install will not overwrite"; \ |
| 294 |
fi |
294 |
fi |
| 295 |
@if [ -f ssh_prng_cmds -a ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \ |
295 |
@if [ -f ssh_prng_cmds ] && [ ! -z "$(INSTALL_SSH_PRNG_CMDS)" ]; then \ |
| 296 |
if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \ |
296 |
if [ ! -f $(DESTDIR)$(sysconfdir)/ssh_prng_cmds ] ; then \ |
| 297 |
$(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \ |
297 |
$(INSTALL) -m 644 ssh_prng_cmds.out $(DESTDIR)$(sysconfdir)/ssh_prng_cmds; \ |
| 298 |
else \ |
298 |
else \ |
|
Lines 406-412
tests: $(TARGETS)
Link Here
|
| 406 |
$@ |
406 |
$@ |
| 407 |
|
407 |
|
| 408 |
regressclean: |
408 |
regressclean: |
| 409 |
if [ -f regress/Makefile -a -r regress/Makefile ]; then \ |
409 |
if [ -f regress/Makefile ] && [ -r regress/Makefile ]; then \ |
| 410 |
(cd regress && $(MAKE) clean) \ |
410 |
(cd regress && $(MAKE) clean) \ |
| 411 |
fi |
411 |
fi |
| 412 |
|
412 |
|