2003/02/28 03:34:15
[org.ibex.core.git] / Makefile
index 8540ad7..1e8bf64 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -32,7 +32,7 @@ all_platforms          := Win32 Linux Java2
 ## Platform-Neutral ###########################################################################
 
 ifneq ($(verbose),true)
-.SILENT: dist update-build $(jikes_java_objects) .headers $(gcj_java_objects) $(all_platforms) PalmOS bin/org/xwt/builtin.xwar nohup-dist
+.SILENT: $(jikes_java_objects) .headers $(gcj_java_objects) $(all_platforms) bin/org/xwt/builtin.xwar
 silent := --silent
 endif
 
@@ -41,7 +41,8 @@ compile: $(jikes_java_objects) bin/org/xwt/builtin.xwar
 all: $(all_platforms)
 
 $(jikes_java_objects): $(jikes_java_sources)
-       echo -ne "compiling  .java -> .class:\\r"
+       test "$(JAVA_HOME)"x != x || (echo "you forgot to set your $$JAVA_HOME environment variable"; false)
+       echo "compiling  .java -> .class:"
        mkdir -p bin
        $(jikes) -sourcepath src/ -classpath lib/libgcj-minimal.jar $(jikes_java_sources) -d bin/
        echo "compiling  .java -> .class: done"
@@ -83,22 +84,22 @@ link: $(gcj_java_objects) $(cc_objects)
 
 .headers: $(jikes_java_objects)
        cd bin; for A in `find * -name \*.class`; do \
-               echo -ne "\033[K\\rextracting .class -> .h:     $$A\\r"; \
+               echo "extracting .class -> .h:     $$A"; \
                $(gcjh) --classpath . `echo $$A | sed s_/_._g | sed s/.class$$//`; \
                done
-       echo -e "\033[K\\rextracting .class -> .h:     done"
+       echo "extracting .class -> .h:     done"
        touch .headers
 
 # turn off optimization of Trap.java due to a compiler bug
 bin-$(platform)/org/xwt/Trap.o: gcj_flags := -O0 -g
 
 $(gcj_java_objects): bin-$(platform)/%.o: src/%.java $(jikes_java_objects)
-       echo -ne "\033[K\\rcompiling  .java -> .o:     $<\\r"
+       echo -ne "compiling  .java -> .o:     $<"
        mkdir -p `dirname $@`
        $(gcj) -c $< -o $@
 
 $(cc_objects): bin-$(platform)/%-nat.o: src/%.cc
-       echo -ne "\033[K\\rcompiling  .cc -> .o:     $$A\\r"
+       echo -ne "compiling  .cc -> .o:     $$A"
        $(gcc) -Ibin -c $< -o $@
 
 bin-$(platform)/org/xwt/builtin.xwar: $(xwar_sources)
@@ -151,22 +152,22 @@ current_build         := $(shell cat next.build)
 
 dist:
        # this will fail if we haven't checked-in since the comment is null; we want this.
-       cvs commit -m ''
+#      cvs commit -m '' > /dev/null
 
        echo "***********************************************************"
        echo "*  This build is $(current_build)"
        echo "***********************************************************"
 
-       (test `uname -n` = gosset.megacz.com) || \
-               ssh xwt@xwt.org /home/xwt/dist | grep -v "make...:.\(Entering\|Leaving\).directory"
+        ifeq ($(shell uname -n),gosset.megacz.com)
+               (make $(silent) dist-private 2>&1) >> .make-dist.out || \
+                       (tail -n 200 .make-dist.out | mail -s "Build $(current_build) FAILED" cvs@xwt.org; false)
+               tail -n 200 .make-dist.out | \
+                       mail -s "Unsigned binaries of $(current_build) are now available" cvs@xwt.org
+        else
+               ssh xwt@xwt.org verbose=$(verbose) /home/xwt/dist \
+                       | grep -v "make...:.\(Entering\|Leaving\).directory"
+        endif
 
-       (test `uname -n` = gosset.megacz.com) && \
-               make $(silent) dist-private &> .make-dist.out || \
-                       (cat .make-dist.out | mail -s "Build $(current_build) FAILED" cvs@xwt.org; false)
-
-       (test `uname -n` = gosset.megacz.com) && \
-               cat .make-dist.out | \
-                       mail -s "Unsigned binaries of $(current_build) are now available" cvs@xwt.org < /dev/null
 
 dist-private:
        make $(silent) update-build