< prev index next >

test/make/TestMake.gmk

Print this page
rev 2045 : 8074716: Add IntelliJ project support to the jdk
Reviewed-by: rriggs
Contributed-by: Chris Hegarty <chris.hegarty@oracle.com>, Maurizio Cimadamore <maurizio.cimadamore@oracle.com>


  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 default: all
  27 
  28 include $(SPEC)
  29 
  30 make-base:
  31         +$(MAKE) -f TestMakeBase.gmk $(TEST_SUBTARGET)
  32 
  33 java-compilation:
  34         +$(MAKE) -f TestJavaCompilation.gmk $(TEST_SUBTARGET)
  35 


  36 
  37 all: make-base java-compilation
  38 
  39 .PHONY: default all make-base java-compilation




  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 default: all
  27 
  28 include $(SPEC)
  29 
  30 make-base:
  31         +$(MAKE) -f TestMakeBase.gmk $(TEST_SUBTARGET)
  32 
  33 java-compilation:
  34         +$(MAKE) -f TestJavaCompilation.gmk $(TEST_SUBTARGET)
  35 
  36 test-idea:
  37         +$(MAKE) -f TestIdea.gmk $(TEST_SUBTARGET)
  38 

  39 
  40 all: make-base java-compilation test-idea
  41 
  42 .PHONY: default all make-base java-compilation test-idea
< prev index next >