summaryrefslogtreecommitdiff
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 1bdc865b7..17565d837 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -1,10 +1,11 @@
1# $Id: Makefile.in,v 1.185 2001/09/17 21:34:33 tim Exp $ 1# $Id: Makefile.in,v 1.186 2001/09/18 05:06:22 djm Exp $
2 2
3prefix=@prefix@ 3prefix=@prefix@
4exec_prefix=@exec_prefix@ 4exec_prefix=@exec_prefix@
5bindir=@bindir@ 5bindir=@bindir@
6sbindir=@sbindir@ 6sbindir=@sbindir@
7libexecdir=@libexecdir@ 7libexecdir=@libexecdir@
8datadir=@datadir@
8mandir=@mandir@ 9mandir=@mandir@
9mansubdir=@mansubdir@ 10mansubdir=@mansubdir@
10sysconfdir=@sysconfdir@ 11sysconfdir=@sysconfdir@
@@ -149,6 +150,7 @@ distclean:
149 rm -f *.out core 150 rm -f *.out core
150 rm -f Makefile config.h config.status ssh_prng_cmds *~ 151 rm -f Makefile config.h config.status ssh_prng_cmds *~
151 (cd openbsd-compat; $(MAKE) distclean) 152 (cd openbsd-compat; $(MAKE) distclean)
153 (cd scard; $(MAKE) distclean)
152 154
153veryclean: 155veryclean:
154 rm -f configure config.h.in *.0 156 rm -f configure config.h.in *.0
@@ -169,14 +171,19 @@ catman-do:
169 171
170distprep: catman-do 172distprep: catman-do
171 autoreconf 173 autoreconf
174 (cd scard ; $(MAKE) -f Makefile.in distprep)
172 175
173install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key 176install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key
174install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files 177install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files
175 178
176install-files: 179scard-install:
180 (cd scard; $(MAKE) DESTDIR=$(DESTDIR) install)
181
182install-files: scard-install
177 $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir) 183 $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir)
178 $(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir) 184 $(srcdir)/mkinstalldirs $(DESTDIR)$(sbindir)
179 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir) 185 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)
186 $(srcdir)/mkinstalldirs $(DESTDIR)$(datadir)
180 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1 187 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)1
181 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8 188 $(srcdir)/mkinstalldirs $(DESTDIR)$(mandir)/$(mansubdir)8
182 $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir) 189 $(srcdir)/mkinstalldirs $(DESTDIR)$(libexecdir)