jdk/make/launcher/Launcher-java.desktop.gmk
changeset 41132 2a3c61e80af0
parent 40261 86a49ba76f52
equal deleted inserted replaced
41131:87edc8451f8a 41132:2a3c61e80af0
     1 #
     1 #
     2 # Copyright (c) 2011, 2015, Oracle and/or its affiliates. All rights reserved.
     2 # Copyright (c) 2011, 2016, Oracle and/or its affiliates. All rights reserved.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4 #
     4 #
     5 # This code is free software; you can redistribute it and/or modify it
     5 # This code is free software; you can redistribute it and/or modify it
     6 # under the terms of the GNU General Public License version 2 only, as
     6 # under the terms of the GNU General Public License version 2 only, as
     7 # published by the Free Software Foundation.  Oracle designates this
     7 # published by the Free Software Foundation.  Oracle designates this
    26 include LauncherCommon.gmk
    26 include LauncherCommon.gmk
    27 
    27 
    28 # Hook to include the corresponding custom file, if present.
    28 # Hook to include the corresponding custom file, if present.
    29 $(eval $(call IncludeCustomExtension, jdk, launcher/Launcher-java.desktop.gmk))
    29 $(eval $(call IncludeCustomExtension, jdk, launcher/Launcher-java.desktop.gmk))
    30 
    30 
    31 ifndef BUILD_HEADLESS_ONLY
    31 ifeq ($(ENABLE_HEADLESS_ONLY), false)
    32   $(eval $(call SetupBuildLauncher, appletviewer, \
    32   $(eval $(call SetupBuildLauncher, appletviewer, \
    33       MAIN_CLASS := sun.applet.Main, \
    33       MAIN_CLASS := sun.applet.Main, \
    34       JAVA_ARGS := --add-modules ALL-DEFAULT, \
    34       JAVA_ARGS := --add-modules ALL-DEFAULT, \
    35       LIBS_unix := $(X_LIBS), \
    35       LIBS_unix := $(X_LIBS), \
    36   ))
    36   ))