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#
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
33SRCS= installgrub.c pcfs_glue.c $(PCFS_SRC) $(UTILS_SRC) $(EINFO_SRC) \
34	$(EXTRA_SRC)
35SBINLINKS= $(PROG)
36
37include ../Makefile.com
38
39CPPFLAGS += -I$(SRC)/uts/i86pc -I$(SRC)/uts/intel -I$(SRC)/uts/common
40CERRWARN += -_gcc=-Wno-unused-label
41CERRWARN += -_gcc=-Wno-unused-function
42CERRWARN += -_gcc=-Wno-uninitialized
43
44LDLIBS += -lmd5
45
46i386_CFLAGS += -D_LARGEFILE64_SOURCE
47i386_CFLAGS += -D_FILE_OFFSET_BITS=64
48
49LDLIBS += -lfdisk -lefi -lfstyp
50
51LINTFLAGS += \
52	-erroff=E_BAD_PTR_CAST_ALIGN \
53	-erroff=E_STATIC_UNUSED \
54	-erroff=E_FUNC_RET_MAYBE_IGNORED \
55	-erroff=E_FUNC_RET_MAYBE_IGNORED2 \
56	-xerroff=E_NAME_DEF_NOT_USED2
57
58C99MODE=	-xc99=%all
59C99LMODE=	-Xc99=%all
60
61.KEEP_STATE:
62
63all: $(PROG)
64
65$(PROG): $(OBJS)
66	$(LINK.c) -o $@ $(OBJS) $(LDLIBS)
67	$(POST_PROCESS)
68
69
70# pick pcfs from usr/src/common/fs
71pcfs.o:	$(PCFS_SRC)
72	$(COMPILE.c) -o $@ $(PCFS_SRC)
73
74boot_utils.o:	$(UTILS_SRC)
75		$(COMPILE.c) -o $@ $(UTILS_SRC)
76
77mboot_extra.o:	$(EXTRA_SRC)
78		$(COMPILE.c) -o $@ $(EXTRA_SRC)
79
80bblk_einfo.o:	$(EINFO_SRC)
81		$(COMPILE.c) -o $@ $(EINFO_SRC)
82
83install: all $(ROOTSBINPROG) .WAIT $(ROOTUSRSBINLINKS)
84
85clean:
86	$(RM) $(OBJS)
87
88lint:	lint_SRCS
89
90include ../Makefile.targ
91