Replace ; with && where appropriate. This fixes the makefiles so that Make correctly errors out rather than blindly carrying on when some error occurs.
git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5731 626c5289-ae23-0410-ae9c-e8d60b6d4f22
This commit is contained in:
parent
c227c0a166
commit
d3d9210bd0
15 changed files with 66 additions and 66 deletions
|
|
@ -5,10 +5,10 @@ OPT =
|
|||
|
||||
INSTALL = ../install-sh -c
|
||||
INSTALL_DATA = ${INSTALL} -m 644
|
||||
SHELL = /bin/sh
|
||||
SHELL = /bin/sh
|
||||
|
||||
all:
|
||||
cd Lib; $(MAKE) OPT="$(OPT)"
|
||||
cd Lib && $(MAKE) OPT="$(OPT)"
|
||||
|
||||
install:
|
||||
$(INSTALL_DATA) Include/gifplot.h $(prefix)/include/gifplot.h
|
||||
|
|
@ -17,7 +17,7 @@ install:
|
|||
|
||||
clean::
|
||||
rm -f *.@OBJEXT@ *~ libgifplot.a *_wrap* *_man*
|
||||
cd Lib; $(MAKE) clean
|
||||
cd Lib && $(MAKE) clean
|
||||
rm -f config.log config.status config.cache
|
||||
|
||||
check: all
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue