(Lars) Remove symbolic links on "make distclean".

git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@9923 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
Angus Leeming 2005-05-09 09:57:36 +00:00
parent 0a1fc13eff
commit 0c83c77294
2 changed files with 9 additions and 0 deletions

View File

@ -1,3 +1,9 @@
2005-05-09 Lars Gullik Bjønnes <larsbj@gullik.net>
* forms/Makefile.am: add a distclean-local target to remove
all .fd symbolic links when the source and build directories
are different.
2005-05-04 Angus Leeming <leeming@lyx.org>
* FormPreferences.C (SpellOptions::build): disable the

View File

@ -65,3 +65,6 @@ SUFFIXES += .fd
.fd.C: $(srcdir)/fdfix.sh $(srcdir)/fdfix[ch].sed $(srcdir)/tmp_str.sed
{ [ $(srcdir) != . ] && [ ! -r $(<F) ] && $(LN_S) $< . ; } || true
$(SHELL) $(SCRIPT) $(<F)
distclean-local:
[ $(srcdir) != . ] && $(RM) $(SRCS)