Build system: further fixes for possibly empty directories (needed because of Git migration)

time-shift
Sébastien Villemot 2010-02-01 10:50:29 +01:00
parent cb1cc4049b
commit 00c73845e0
2 changed files with 6 additions and 2 deletions

View File

@ -17,4 +17,6 @@ all-local:
done
clean-local:
cd $(top_srcdir)/../../matlab && rm -f $(PROGRAMS)
if test -d $(top_srcdir)/../../matlab; then \
cd $(top_srcdir)/../../matlab && rm -f $(PROGRAMS); \
fi

View File

@ -29,4 +29,6 @@ all-local:
done
clean-local:
cd $(top_srcdir)/../../octave && rm -f $(PROGRAMS)
if test -d $(top_srcdir)/../../octave; then \
cd $(top_srcdir)/../../octave && rm -f $(PROGRAMS); \
fi