Don't removed generated external files during distclean

git-svn-id: https://www.opensc-project.org/svnp/opensc/trunk@3562 c6295689-39f2-0310-b995-f0e70906c6a9
This commit is contained in:
alonbl 2008-09-08 14:04:49 +00:00
parent 29ee5e116c
commit c89d27f755
2 changed files with 17 additions and 5 deletions

View File

@ -93,4 +93,10 @@ maintainer-clean-local:
-rm -rf "$(srcdir)/html.out" "$(srcdir)/man.out"
distclean-local:
-rm -fr html.out html.tmp man.out man.tmp api.work
-rm -fr html.tmp man.tmp api.work
if test -L html.out; then \
-rm -rf html.out; \
fi
if test -L man.out; then \
-rm -rf man.out; \
fi

View File

@ -1,7 +1,5 @@
MAINTAINERCLEANFILES = \
$(srcdir)/Makefile.in $(srcdir)/ChangeLog
DISTCLEANFILES = \
ChangeLog ChangeLog.tmp
$(srcdir)/Makefile.in
wikidir=$(htmldir)/wiki
@ -44,7 +42,15 @@ ChangeLog:
endif
distclean-local:
-rm -rf wiki.out wiki.tmp
-rm -rf wiki.tmp
if test -L wiki.out; then \
rm -fr wiki.out; \
fi
-rm -fr ChangeLog.tmp
if test -L ChangeLog; then \
rm -fr ChangeLog; \
fi
maintainer-clean-local:
-rm -rf "$(srcdir)/wiki.out"
-rm -rf "$(srcdir)/ChangeLog"