< prev index next >

test/make/TestMake.gmk

Print this page
rev 52916 : 8210459: Add support for generating compile_commands.json
Reviewed-by: andrew


  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 copy-files:
  37         +$(MAKE) -f TestCopyFiles.gmk $(TEST_SUBTARGET)
  38 
  39 test-idea:
  40         +$(MAKE) -f TestIdea.gmk $(TEST_SUBTARGET)
  41 



  42 
  43 all: make-base java-compilation copy-files test-idea
  44 
  45 .PHONY: default all make-base java-compilation copy-files test-idea


  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 copy-files:
  37         +$(MAKE) -f TestCopyFiles.gmk $(TEST_SUBTARGET)
  38 
  39 test-idea:
  40         +$(MAKE) -f TestIdea.gmk $(TEST_SUBTARGET)
  41 
  42 test-compile-commands:
  43         +$(MAKE) -f TestCompileCommands.gmk $(TEST_SUBTARGET)
  44 
  45 
  46 all: make-base java-compilation copy-files test-idea
  47 
  48 .PHONY: default all make-base java-compilation copy-files test-idea test-compile-commands
< prev index next >