jdk/make/Makefile
changeset 11994 74f1488b7347
parent 9035 1255eb81cc2f
child 12047 320a714614e9
equal deleted inserted replaced
11993:09fe41b31c03 11994:74f1488b7347
   195 "
   195 "
   196 
   196 
   197 #
   197 #
   198 # 'all' target intro
   198 # 'all' target intro
   199 #
   199 #
   200 all:: 
   200 all::
   201 	@$(ECHO) $(PLATFORM) $(ARCH) $(RELEASE) build started: $(shell $(DATE) '+%y-%m-%d %H:%M')
   201 	@$(ECHO) $(PLATFORM) $(ARCH) $(RELEASE) build started: $(shell $(DATE) '+%y-%m-%d %H:%M')
   202 
   202 
   203 # Just in case anyone uses this old name, same as 'build'
   203 # Just in case anyone uses this old name, same as 'build'
   204 optimized: build
   204 optimized: build
   205 
   205 
   232 
   232 
   233 all build:: sanity-all post-sanity-all
   233 all build:: sanity-all post-sanity-all
   234 
   234 
   235 SUBDIRS       = tools java javax sun com
   235 SUBDIRS       = tools java javax sun com
   236 SUBDIRS_tools = launchers
   236 SUBDIRS_tools = launchers
   237 SUBDIRS_misc  = org sunw jpda mkdemo mksample
   237 SUBDIRS_misc  = org sunw jpda
       
   238 
       
   239 # demos
       
   240 ifndef NO_DEMOS
       
   241   SUBDIRS_misc += mkdemo
       
   242 endif
       
   243 
       
   244 # samples
       
   245 ifndef NO_SAMPLES
       
   246   SUBDIRS_misc += mksample
       
   247 endif
   238 
   248 
   239 # Alternate classes implementation
   249 # Alternate classes implementation
   240 ifndef OPENJDK
   250 ifndef OPENJDK
   241   SUBDIRS_misc += altclasses
   251   SUBDIRS_misc += altclasses
   242 endif
   252 endif
   381 # Phonies to avoid accidents.
   391 # Phonies to avoid accidents.
   382 #
   392 #
   383 .PHONY: all build clean clobber optimized debug fastdebug create_links \
   393 .PHONY: all build clean clobber optimized debug fastdebug create_links \
   384 	import import_product import_fastdebug import_debug \
   394 	import import_product import_fastdebug import_debug \
   385 	test test_run test_start test_clean test_summary
   395 	test test_run test_start test_clean test_summary
   386