* Makefile.am: Add *clean-local targets to take care of the

samba directory.
This commit is contained in:
Pavel Roskin 2002-01-03 01:26:24 +00:00
parent 8ef801e873
commit 1dcc3e89bc
2 changed files with 18 additions and 0 deletions

View File

@ -1,5 +1,8 @@
2001-01-02 Pavel Roskin <proski@gnu.org>
* Makefile.am: Add *clean-local targets to take care of the
samba directory.
* samba/configure.in: Use explicit AC_CONFIG_AUX_DIR because
this setting is not inherited from the top-level configure.

View File

@ -55,6 +55,21 @@ dist-hook:
cp -p $(srcdir)/samba/$$I $(distdir)/samba/$$I || exit 1; \
done
mostlyclean-local:
if test -f samba/Makefile; then \
(cd samba && $(MAKE) mostlyclean) \
else :; fi
clean-local:
if test -f samba/Makefile; then \
(cd samba && $(MAKE) clean) \
else :; fi
distclean-local:
if test -f samba/Makefile; then \
(cd samba && $(MAKE) distclean) \
else :; fi
if USE_VFS
noinst_LIBRARIES = libvfs-mc.a
else