summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorKarl Wette <karl.wette@ligo.org>2014-05-02 16:16:11 +0200
committerKarl Wette <karl.wette@ligo.org>2014-05-02 20:06:11 +0200
commitd5b765d3888d82d8b6a420b80047278c81c4ef95 (patch)
tree445cdd6cdb03c1aa215fa5848c74ed644207db8a /Makefile.in
parent7cd9063b52d29bf3a5c6cee8d272b75a1012756b (diff)
downloadswig-d5b765d3888d82d8b6a420b80047278c81c4ef95.tar.gz
Whitespace cleanup of all Makefiles*
- some of the %.clean rules in the test-suite Makefiles were using a single tab as an empty rule, dangerous! I've replaced these with the safer '@exit 0'.
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile.in b/Makefile.in
index f4d0be077..2eb1326ea 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -249,8 +249,8 @@ check-%-examples :
# gcj individual example
java.actionexample:
@if $(skip-gcj); then \
- echo "skipping Examples/$(LANGUAGE)/java $(ACTION) (gcj test)"; \
- else \
+ echo "skipping Examples/$(LANGUAGE)/java $(ACTION) (gcj test)"; \
+ else \
echo $(ACTION)ing Examples/$(LANGUAGE)/java; \
(cd Examples/$(LANGUAGE)/java && $(MAKE) $(FLAGS) $(chk-set-env) $(ACTION)) \
fi
@@ -481,13 +481,13 @@ lib-languages = gcj typemaps tcl perl5 python guile java mzscheme ruby php ocaml
lib-modules = std
-install-lib:
+install-lib:
@echo "Installing the SWIG library"
@$(MKINSTDIRS) $(DESTDIR)$(SWIG_LIB)
@for file in $(srcdir)/Lib/*.i $(srcdir)/Lib/*.swg ; do \
i=`basename $$file` ; \
echo "Installing $(DESTDIR)$(SWIG_LIB)/$$i"; \
- $(INSTALL_DATA) $$file $(DESTDIR)$(SWIG_LIB)/$$i; \
+ $(INSTALL_DATA) $$file $(DESTDIR)$(SWIG_LIB)/$$i; \
done;
@for lang in $(lib-languages) $(lib-modules); \
do \