From 5b7e7b24e7d791fcc622292b51284cc5858ea694 Mon Sep 17 00:00:00 2001 From: adam Date: Wed, 14 Apr 2004 07:11:10 +0000 Subject: [PATCH] Platform moved to org.ibex.plat in Makefile darcs-hash:20040414071110-5007d-7a61e0f3ed7370bdc63325ff2aac2f8e10de9337.gz --- Makefile | 19 ++++++++++--------- 1 file changed, 10 insertions(+), 9 deletions(-) diff --git a/Makefile b/Makefile index 72f68df..3b4ea7f 100644 --- a/Makefile +++ b/Makefile @@ -84,15 +84,16 @@ include Makefile.upstream # @grep -s extends src/$(subst .,/,$*).java | sed s_.\*extends\ __ | head -n 1 | sed s_\ .\*__ |\ # xargs --replace make -s superclass_org.ibex.plat.{} -plat_classes_AWT := org.ibex.plat.AWT -plat_classes_Java2 := org.ibex.plat.Java2 org.ibex.plat.JVM $(plat_classes_AWT) -plat_classes_GCJ := org.ibex.plat.GCJ -plat_classes_Win32 := org.ibex.plat.Win32 $(plat_classes_GCJ) -plat_classes_POSIX := org.ibex.plat.POSIX $(plat_classes_GCJ) -plat_classes_X11 := org.ibex.plat.X11 $(plat_classes_POSIX) -plat_classes_Linux := org.ibex.plat.Linux $(plat_classes_X11) -plat_classes_Solaris := org.ibex.plat.Solaris $(plat_classes_X11) -plat_classes_Darwin := org.ibex.plat.Darwin org.ibex.plat.OpenGL $(plat_classes_POSIX) +plat_classes_Platform := org.ibex.plat.Platform +plat_classes_AWT := org.ibex.plat.AWT $(plat_classes_Platform) +plat_classes_Java2 := org.ibex.plat.Java2 org.ibex.plat.JVM $(plat_classes_AWT) +plat_classes_GCJ := org.ibex.plat.GCJ $(plat_classes_Platform) +plat_classes_Win32 := org.ibex.plat.Win32 $(plat_classes_GCJ) +plat_classes_POSIX := org.ibex.plat.POSIX $(plat_classes_GCJ) +plat_classes_X11 := org.ibex.plat.X11 $(plat_classes_POSIX) +plat_classes_Linux := org.ibex.plat.Linux $(plat_classes_X11) +plat_classes_Solaris := org.ibex.plat.Solaris $(plat_classes_X11) +plat_classes_Darwin := org.ibex.plat.Darwin org.ibex.plat.OpenGL $(plat_classes_POSIX) plat_java_src_sources := $(patsubst %,build/java/%.java,$(subst .,/,$(plat_classes_$(platform)))) java_src_sources := $(shell find src -name '*.java' | grep -v Preprocessor | grep -v /plat/) -- 1.7.10.4