1# 2# CDDL HEADER START 3# 4# The contents of this file are subject to the terms of the 5# Common Development and Distribution License (the "License"). 6# You may not use this file except in compliance with the License. 7# 8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 9# or http://www.opensolaris.org/os/licensing. 10# See the License for the specific language governing permissions 11# and limitations under the License. 12# 13# When distributing Covered Code, include this CDDL HEADER in each 14# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 15# If applicable, add the following below this CDDL HEADER, with the 16# fields enclosed by brackets "[]" replaced with your own identifying 17# information: Portions Copyright [yyyy] [name of copyright owner] 18# 19# CDDL HEADER END 20# 21# Copyright (c) 2005, 2010, Oracle and/or its affiliates. All rights reserved. 22# Copyright 2015, Nexenta Systems, Inc. 23# Copyright (c) 2018, Joyent, Inc. 24 25PROG= installgrub 26 27PCFS_SRC= $(SRC)/common/fs/pcfs.c 28EINFO_SRC= ./../common/bblk_einfo.c 29UTILS_SRC =./../common/boot_utils.c 30EXTRA_SRC =./../common/mboot_extra.c 31 32OBJS= installgrub.o pcfs_glue.o pcfs.o bblk_einfo.o boot_utils.o mboot_extra.o \ 33 getresponse.o 34SBINLINKS= $(PROG) 35 36include ../Makefile.com 37 38CPPFLAGS += -I$(SRC)/uts/i86pc -I$(SRC)/uts/intel -I$(SRC)/uts/common 39CPPFLAGS += -I$(SRC)/common/util 40 41# not linted 42SMATCH=off 43 44LDLIBS += -lmd5 45 46i386_CFLAGS += -D_LARGEFILE64_SOURCE 47i386_CFLAGS += -D_FILE_OFFSET_BITS=64 48 49LDLIBS += -lfdisk -lefi -lfstyp 50 51CSTD= $(CSTD_GNU99) 52 53.KEEP_STATE: 54 55all: $(PROG) 56 57$(PROG): $(OBJS) 58 $(LINK.c) -o $@ $(OBJS) $(LDLIBS) 59 $(POST_PROCESS) 60 61 62# pick pcfs from usr/src/common/fs 63pcfs.o: $(PCFS_SRC) 64 $(COMPILE.c) -o $@ $(PCFS_SRC) 65 66boot_utils.o: $(UTILS_SRC) 67 $(COMPILE.c) -o $@ $(UTILS_SRC) 68 69mboot_extra.o: $(EXTRA_SRC) 70 $(COMPILE.c) -o $@ $(EXTRA_SRC) 71 72bblk_einfo.o: $(EINFO_SRC) 73 $(COMPILE.c) -o $@ $(EINFO_SRC) 74 75%.o: $(SRC)/common/util/%.c 76 $(COMPILE.c) $(OUTPUT_OPTION) $< 77 78install: all $(ROOTSBINPROG) .WAIT $(ROOTUSRSBINLINKS) 79 80clean: 81 $(RM) $(OBJS) 82 83include ../Makefile.targ 84