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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 # CA 95054 USA or visit www.sun.com if you need additional information or
23 # have any questions.
24 #
25
26 BUILDDIR = ../../..
27 PACKAGE = javax.swing.plaf
28 PRODUCT = com
29 SWING_SRC = $(SHARE_SRC)/classes/javax/swing
30 include $(BUILDDIR)/common/Defs.gmk
31
32 #
33 # Files
34 #
35 include FILES.gmk
36 AUTO_FILES_JAVA_DIRS = javax/swing/plaf sun/swing com/sun/java/swing/plaf
37 SUBDIRS = nimbus
38
39 # Nimbus is handled in its own directory
40 AUTO_JAVA_PRUNE = nimbus
41
42 ifeq ($(PLATFORM), windows)
43 # Don't build GTK L&F on Windows
44 AUTO_JAVA_PRUNE += gtk
45 endif
46
47 MISC_FILES = $(MISC_SWING_FILES)
48 ifneq ($(PLATFORM), windows)
49 # Only include GTK icons on Solaris/Linux
50 MISC_FILES += $(MISC_SWING_FILES_UNIX)
51 endif
52
53 FILES_java = $(FILES_SWING_java)
54
55 #
56 # Resources
57 #
|
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 Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
22 # CA 95054 USA or visit www.sun.com if you need additional information or
23 # have any questions.
24 #
25
26 BUILDDIR = ../../..
27 PACKAGE = javax.swing.plaf
28 PRODUCT = com
29 SWING_SRC = $(SHARE_SRC)/classes/javax/swing
30 include $(BUILDDIR)/common/Defs.gmk
31
32 #
33 # Files
34 #
35 include FILES.gmk
36 AUTO_FILES_JAVA_DIRS = javax/swing/plaf sun/swing com/sun/java/swing/plaf
37 ifndef DISABLE_NIMBUS
38 SUBDIRS = nimbus
39 endif
40
41 # Nimbus is handled in its own directory
42 AUTO_JAVA_PRUNE = nimbus
43
44 ifeq ($(PLATFORM), windows)
45 # Don't build GTK L&F on Windows
46 AUTO_JAVA_PRUNE += gtk
47 endif
48
49 MISC_FILES = $(MISC_SWING_FILES)
50 ifneq ($(PLATFORM), windows)
51 # Only include GTK icons on Solaris/Linux
52 MISC_FILES += $(MISC_SWING_FILES_UNIX)
53 endif
54
55 FILES_java = $(FILES_SWING_java)
56
57 #
58 # Resources
59 #
|