scilab: fix Examples makefile missing separator

This commit is contained in:
Simon Marchetto 2014-07-10 12:19:07 +02:00
commit e3856c1c87

View file

@ -1717,7 +1717,7 @@ endif
# ----------------------------------------------------------------
scilab: $(SRCDIR_SRCS)
@if test ! -z "$(SRCS)"; then \
if test ! -z "$(SRCS)"; then \
test "$(SRCS)" = "$(SRCDIR_SRCS)" || cp $(SRCDIR_SRCS) . ; \
if test ! -z "$(INCLUDES)"; then \
$(SWIG) -scilab $(SWIGOPT) -o $(ISRCS) -addsources "$(SRCS)" -addcflags "$(SRCDIR_INCLUDE)" -addcflags "-I$(abspath $(INCLUDES))" $(INTERFACEPATH); \
@ -1733,7 +1733,7 @@ scilab: $(SRCDIR_SRCS)
fi
env LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH MAKEFLAGS="-j1" $(RUNTOOL) $(SCILAB) $(SCILAB_OPT) -e "ierr = exec('builder.sce', 'errcatch', -1); if ierr <> 0 then disp(lasterror()); end; exit(ierr);"; \
STATUS=$$? \
test "x$(SRCS)" = "x$(SRCDIR_SRCS)" || rm $(SRCS) \
test "x$(SRCS)" = "x$(SRCDIR_SRCS)" || rm $(SRCS); \
exit $(STATUS)
# ----------------------------------------------------------------
@ -1741,7 +1741,7 @@ scilab: $(SRCDIR_SRCS)
# ----------------------------------------------------------------
scilab_cpp: $(SRCDIR_SRCS)
@if test ! -z "$(SRCS)"; then \
if test ! -z "$(SRCS)"; then \
test "$(SRCS)" = "$(SRCDIR_SRCS)" || cp $(SRCDIR_SRCS) . ; \
if test ! -z "$(INCLUDES)"; then \
$(SWIG) -c++ -scilab $(SWIGOPT) -o $(ICXXSRCS) -addsources "$(SRCS)" -addcflags "$(SRCDIR_INCLUDE)" -addcflags "-I$(abspath $(INCLUDES))" $(INTERFACEPATH); \
@ -1757,7 +1757,7 @@ scilab_cpp: $(SRCDIR_SRCS)
fi
env LD_LIBRARY_PATH=.:$$LD_LIBRARY_PATH MAKEFLAGS="-j1" $(RUNTOOL) $(SCILAB) $(SCILAB_OPT) -e "ierr = exec('builder.sce', 'errcatch', -1); if ierr <> 0 then disp(lasterror()); end; exit(ierr);"; \
STATUS=$$? \
test "x$(SRCS)" = "x$(SRCDIR_SRCS)" || rm $(SRCS) \
test "x$(SRCS)" = "x$(SRCDIR_SRCS)" || rm $(SRCS); \
exit $(STATUS)
# -----------------------------------------------------------------