| 12345678910111213141516171819202122232425262728293031323334 | # This file is part of the OpenADK project. OpenADK is copyrighted# material, please see the LICENCE file in the top-level directory.include $(TOPDIR)/rules.mkTARGETS:=ifneq ($(ADK_PACKAGE_OPENJDK),)# jikes is for antTARGETS+=fastjar gcj ecj jikes classpath jamvm ant openjdk qemuendififneq ($(ADK_PACKAGE_OPENJDK7),)# jikes is for antTARGETS+=fastjar gcj ecj jikes classpath jamvm ant openjdk7endifTARGETS_INSTALL:=$(patsubst %,%-install,$(TARGETS))TARGETS_CLEAN:=$(patsubst %,%-clean,$(TARGETS))all: installcompile:install: $(TARGETS_INSTALL)clean: $(TARGETS_CLEAN)%-compile: $(TOOLS_BUILD_DIR)	$(TRACE) "jtools/$(patsubst %-compile,%,$@)/compile "	$(MAKE) -C $(patsubst %-compile,%,$@) compile%-install:	$(TRACE) "jtools/$(patsubst %-install,%,$@)/install "	$(MAKE) -C $(patsubst %-install,%,$@) install%-clean:	$(TRACE) "jtools/$(patsubst %-clean,%,$@)/clean "	$(MAKE) -C $(patsubst %-clean,%,$@) clean
 |