1# 2# Copyright 2005 Sun Microsystems, Inc. All rights reserved. 3# Use is subject to license terms. 4# 5# ident "%Z%%M% %I% %E% SMI" 6# 7.KEEP_STATE: 8 9include ../Makefile.master 10include Makefile.grub 11 12all := TARGET = all 13install := TARGET = install 14clean := TARGET = clean 15clobber := TARGET = clobber 16 17GRUB = grub-0.95 18 19SUBDIRS = $(GRUB) 20 21SPLASH_IMAGE = splash.xpm.gz 22GRUB_MENU = menu.lst 23GRUB_DEFAULT = default 24INSTALL_MENU = install_menu 25 26INST_TARGETS = $(ROOT_BOOT_GRUB)/$(SPLASH_IMAGE) 27INST_TARGETS += $(ROOT_BOOT_GRUB)/$(GRUB_MENU) 28INST_TARGETS += $(ROOT_BOOT_GRUB)/$(INSTALL_MENU) 29INST_TARGETS += $(ROOT_BOOT_GRUB)/$(GRUB_DEFAULT) 30 31$(ROOT_BOOT_GRUB)/$(GRUB_DEFAULT) := FILEMODE = 444 32 33all: $(SUBDIRS) 34 35install: $(SUBDIRS) $(INST_TARGETS) 36 37 38# Makefiles in the GRUB source tree are named "Makefile.solaris". 39$(GRUB): FRC 40 cd $@; pwd; $(MAKE) -f Makefile.solaris $(TARGET) 41 42$(ROOT_BOOT_GRUB)/%: $(ROOT_BOOT_GRUB) % 43 $(INS.file) 44 45$(ROOT_BOOT_GRUB): 46 $(INS.dir) 47 48 49clean clobber: $(SUBDIRS) 50 51FRC: 52