8328680: Introduce JDK_LIB, and clean up module native compilation

Reviewed-by: erikj, jwaters
This commit is contained in:
Magnus Ihse Bursie 2024-03-22 14:12:26 +00:00
parent 638708cad8
commit e80619a032
41 changed files with 345 additions and 207 deletions

View file

@ -1,5 +1,5 @@
#
# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
# Copyright (c) 2015, 2024, Oracle and/or its affiliates. All rights reserved.
# DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
#
# This code is free software; you can redistribute it and/or modify it
@ -25,10 +25,18 @@
include LauncherCommon.gmk
################################################################################
## Build jar
################################################################################
$(eval $(call SetupBuildLauncher, jar, \
MAIN_CLASS := sun.tools.jar.Main, \
))
################################################################################
## Build jarsigner
################################################################################
$(eval $(call SetupBuildLauncher, jarsigner, \
MAIN_CLASS := sun.security.tools.jarsigner.Main, \
))