10Sstevel@tonic-gate# 26448Svikram# Copyright 2008 Sun Microsystems, Inc. All rights reserved. 30Sstevel@tonic-gate# Use is subject to license terms. 40Sstevel@tonic-gate# 50Sstevel@tonic-gate# ident "%Z%%M% %I% %E% SMI" 60Sstevel@tonic-gate# 70Sstevel@tonic-gate.KEEP_STATE: 80Sstevel@tonic-gate 90Sstevel@tonic-gateinclude ../Makefile.master 100Sstevel@tonic-gateinclude Makefile.grub 110Sstevel@tonic-gate 120Sstevel@tonic-gateall := TARGET = all 130Sstevel@tonic-gateinstall := TARGET = install 140Sstevel@tonic-gateclean := TARGET = clean 150Sstevel@tonic-gateclobber := TARGET = clobber 160Sstevel@tonic-gate 17*8044SWilliam.Kucharski@Sun.COMGRUB = grub-0.97 180Sstevel@tonic-gate 190Sstevel@tonic-gateSUBDIRS = $(GRUB) 200Sstevel@tonic-gate 210Sstevel@tonic-gateSPLASH_IMAGE = splash.xpm.gz 220Sstevel@tonic-gateGRUB_MENU = menu.lst 23697SszhouGRUB_DEFAULT = default 240Sstevel@tonic-gateINSTALL_MENU = install_menu 256448SvikramCAPABILITY = capability 260Sstevel@tonic-gate 270Sstevel@tonic-gateINST_TARGETS = $(ROOT_BOOT_GRUB)/$(SPLASH_IMAGE) 280Sstevel@tonic-gateINST_TARGETS += $(ROOT_BOOT_GRUB)/$(GRUB_MENU) 290Sstevel@tonic-gateINST_TARGETS += $(ROOT_BOOT_GRUB)/$(INSTALL_MENU) 30697SszhouINST_TARGETS += $(ROOT_BOOT_GRUB)/$(GRUB_DEFAULT) 316448SvikramINST_TARGETS += $(ROOT_BOOT_GRUB)/$(CAPABILITY) 32697Sszhou 33697Sszhou$(ROOT_BOOT_GRUB)/$(GRUB_DEFAULT) := FILEMODE = 444 346448Svikram$(ROOT_BOOT_GRUB)/$(CAPABILITY) := FILEMODE = 444 350Sstevel@tonic-gate 360Sstevel@tonic-gateall: $(SUBDIRS) 370Sstevel@tonic-gate 380Sstevel@tonic-gateinstall: $(SUBDIRS) $(INST_TARGETS) 390Sstevel@tonic-gate 400Sstevel@tonic-gate 410Sstevel@tonic-gate# Makefiles in the GRUB source tree are named "Makefile.solaris". 420Sstevel@tonic-gate$(GRUB): FRC 430Sstevel@tonic-gate cd $@; pwd; $(MAKE) -f Makefile.solaris $(TARGET) 440Sstevel@tonic-gate 450Sstevel@tonic-gate$(ROOT_BOOT_GRUB)/%: $(ROOT_BOOT_GRUB) % 460Sstevel@tonic-gate $(INS.file) 470Sstevel@tonic-gate 480Sstevel@tonic-gate$(ROOT_BOOT_GRUB): 490Sstevel@tonic-gate $(INS.dir) 500Sstevel@tonic-gate 510Sstevel@tonic-gate 52322Sjongkisclean clobber: $(SUBDIRS) 530Sstevel@tonic-gate 540Sstevel@tonic-gateFRC: 55