summaryrefslogtreecommitdiffstats
path: root/Makefile.in
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-09-18 15:06:21 +1000
committerDamien Miller <djm@mindrot.org>2001-09-18 15:06:21 +1000
commitd97c2ceed1e295bdc612be7e042015c1b7200773 (patch)
treef4877edf95addda8d03e96fe6baf48bf165a55f8 /Makefile.in
parentff5f47e230b2c8278791c0fb8b2bcb0d08fcee1b (diff)
- (djm) More makefile infrastructre for smartcard support, also based
on Ben's work
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in11
1 files changed, 9 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index 1bdc865b..17565d83 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,10 +1,11 @@
-# $Id: Makefile.in,v 1.185 2001/09/17 21:34:33 tim Exp $
+# $Id: Makefile.in,v 1.186 2001/09/18 05:06:22 djm Exp $
prefix=@prefix@
exec_prefix=@exec_prefix@
bindir=@bindir@
sbindir=@sbindir@
libexecdir=@libexecdir@
+datadir=@datadir@
mandir=@mandir@
mansubdir=@mansubdir@
sysconfdir=@sysconfdir@
@@ -149,6 +150,7 @@ distclean:
rm -f *.out core
rm -f Makefile config.h config.status ssh_prng_cmds *~
(cd openbsd-compat; $(MAKE) distclean)
+ (cd scard; $(MAKE) distclean)
veryclean:
rm -f configure config.h.in *.0
@@ -169,14 +171,19 @@ catman-do:
distprep: catman-do
autoreconf
+ (cd scard ; $(MAKE) -f Makefile.in distprep)
install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key
install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
-install-files:
+scard-install:
+ (cd scard; $(MAKE) DESTDIR=$(DESTDIR) install)
+
+install-files: scard-install
$(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
$(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)
+ $(srcdir)/mkinstalldirs $(DESTDIR)$(datadir)
$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
$(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
$(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)