mirror of https://github.com/MidnightCommander/mc
* Makefile.am: Add *clean-local targets to take care of the
samba directory.
This commit is contained in:
parent
8ef801e873
commit
1dcc3e89bc
|
@ -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.
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue