scilab: fix Examples makefile missing separator
This commit is contained in:
parent
bf5f761229
commit
e3856c1c87
1 changed files with 4 additions and 4 deletions
|
|
@ -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)
|
||||
|
||||
# -----------------------------------------------------------------
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue