diff options
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile.in b/Makefile.in index 9bf8a425c..f484dc3a0 100644 --- a/Makefile.in +++ b/Makefile.in | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: Makefile.in,v 1.189 2001/10/22 00:53:59 tim Exp $ | 1 | # $Id: Makefile.in,v 1.190 2001/11/11 23:34:23 djm Exp $ |
2 | 2 | ||
3 | prefix=@prefix@ | 3 | prefix=@prefix@ |
4 | exec_prefix=@exec_prefix@ | 4 | exec_prefix=@exec_prefix@ |
@@ -87,7 +87,7 @@ $(SSHDOBJS): config.h | |||
87 | 87 | ||
88 | LIBCOMPAT=openbsd-compat/libopenbsd-compat.a | 88 | LIBCOMPAT=openbsd-compat/libopenbsd-compat.a |
89 | $(LIBCOMPAT): always | 89 | $(LIBCOMPAT): always |
90 | (cd openbsd-compat; $(MAKE)) | 90 | (cd openbsd-compat && $(MAKE)) |
91 | always: | 91 | always: |
92 | 92 | ||
93 | libssh.a: $(LIBSSH_OBJS) | 93 | libssh.a: $(LIBSSH_OBJS) |
@@ -144,23 +144,23 @@ $(CONFIGFILES): $(CONFIGFILES_IN) | |||
144 | clean: | 144 | clean: |
145 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log | 145 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log |
146 | rm -f *.out core | 146 | rm -f *.out core |
147 | (cd openbsd-compat; $(MAKE) clean) | 147 | (cd openbsd-compat && $(MAKE) clean) |
148 | 148 | ||
149 | distclean: | 149 | distclean: |
150 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log | 150 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log |
151 | rm -f *.out core | 151 | rm -f *.out core |
152 | rm -f Makefile config.h config.status ssh_prng_cmds *~ | 152 | rm -f Makefile config.h config.status ssh_prng_cmds *~ |
153 | rm -rf autom4te.cache | 153 | rm -rf autom4te.cache |
154 | (cd openbsd-compat; $(MAKE) distclean) | 154 | (cd openbsd-compat && $(MAKE) distclean) |
155 | (cd scard; $(MAKE) distclean) | 155 | (cd scard && $(MAKE) distclean) |
156 | 156 | ||
157 | veryclean: | 157 | veryclean: |
158 | rm -f configure config.h.in *.0 | 158 | rm -f configure config.h.in *.0 |
159 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log | 159 | rm -f *.o *.a $(TARGETS) logintest config.cache config.log |
160 | rm -f *.out core | 160 | rm -f *.out core |
161 | rm -f Makefile config.h config.status ssh_prng_cmds *~ | 161 | rm -f Makefile config.h config.status ssh_prng_cmds *~ |
162 | (cd openbsd-compat; $(MAKE) distclean) | 162 | (cd openbsd-compat && $(MAKE) distclean) |
163 | (cd scard; $(MAKE) distclean) | 163 | (cd scard && $(MAKE) distclean) |
164 | 164 | ||
165 | mrproper: distclean | 165 | mrproper: distclean |
166 | 166 | ||
@@ -174,13 +174,13 @@ catman-do: | |||
174 | 174 | ||
175 | distprep: catman-do | 175 | distprep: catman-do |
176 | autoreconf | 176 | autoreconf |
177 | (cd scard ; $(MAKE) -f Makefile.in distprep) | 177 | (cd scard && $(MAKE) -f Makefile.in distprep) |
178 | 178 | ||
179 | install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key | 179 | install: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files host-key |
180 | install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files | 180 | install-nokeys: $(CONFIGFILES) $(MANPAGES) $(TARGETS) install-files |
181 | 181 | ||
182 | scard-install: | 182 | scard-install: |
183 | (cd scard; $(MAKE) DESTDIR=$(DESTDIR) install) | 183 | (cd scard && $(MAKE) DESTDIR=$(DESTDIR) install) |
184 | 184 | ||
185 | install-files: scard-install | 185 | install-files: scard-install |
186 | $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir) | 186 | $(srcdir)/mkinstalldirs $(DESTDIR)$(bindir) |