changeset 584:29c7cb849479

Remove c67 and win32 from make all until I have a test environment for them.
author Rob Landley <rob@landley.net>
date Thu, 03 Apr 2008 22:53:32 -0500
parents 2d9e5cc32ea9
children 7fc19a001568
files Makefile make/make.sh
diffstat 2 files changed, 4 insertions(+), 4 deletions(-) [+]
line wrap: on
line diff
--- a/Makefile	Thu Apr 03 13:25:21 2008 -0500
+++ b/Makefile	Thu Apr 03 22:53:32 2008 -0500
@@ -1,10 +1,10 @@
 # The build logic isn't really in this makefile, it's in bash scripts in
 # the make directory.  This just provides a familiar user interface.
 
-all native i386 arm c67 win32:
+all native i386 arm: # c67 win32
 	make/make.sh $@
 
 install clean test:
 	make/$@.sh
 
-.PHONY: all i386 arm c67 win32 install clean test
+.PHONY: all native i386 arm c67 win32 install clean test help
--- a/make/make.sh	Thu Apr 03 13:25:21 2008 -0500
+++ b/make/make.sh	Thu Apr 03 22:53:32 2008 -0500
@@ -97,11 +97,11 @@
 
 [ $# -ne 0 ] && TARGETS="$@"
 [ "$TARGETS" == "native" ] && TARGETS="$HOST"
-[ "$TARGETS" == "all" ] && TARGETS="i386 arm c67 win32"
+[ "$TARGETS" == "all" ] && TARGETS="i386 arm" #c67 win32
 if [ -z "$TARGETS" ]
 then
   echo "Usage: make.sh TARGET [TARGET...]" >&2
-  echo "Targets: i386 arm c67 win32 (all native)" >&2
+  echo "Targets: i386 arm (all native)" >&2
   exit 1
 fi