Unleashed v1.4
[unleashed.git] / usr / src / cmd / boot / bootadm / Makefile
blob14b5aeec2d19fb648a3395e4c3b20084e63d4c6d
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
22 # Copyright 2009 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
25 # Copyright 2016 Toomas Soome <tsoome@me.com>
26 # Copyright 2016 Nexenta Systems, Inc.
27 # Copyright 2018 OmniOS Community Edition (OmniOSce) Association.
28 # Copyright (c) 2018, Joyent, Inc.
30 PROG= bootadm
32 SBINLINKS= $(PROG)
34 OBJS= bootadm.o bootadm_upgrade.o bootadm_loader.o
35 SRCS = $(OBJS:.o=.c)
36 POFILES= $(OBJS:%.o=%.po)
38 include ../Makefile.com
40 POFILE= bootadm_cmd.po
42 .KEEP_STATE:
44 LDLIBS += -lficl-sys -lnvpair -lgen
45 LDLIBS += -lz -lbe -lzfs -lofmt $(LDLIBS_$(MACH))
47 CPPFLAGS += -I$(SRCTOP)/include -I$(SRC)/common -I$(SRC)/common/ficl
48 CERRWARN += -Wall -Wno-unknown-pragmas
50 SMOFF += all_func_returns
52 CSTD= $(CSTD_GNU99)
54 all: $(PROG)
56 $(PROG): $(OBJS) bootadm.h
57 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
58 $(POST_PROCESS)
60 install: all $(ROOTSBINPROG) .WAIT $(ROOTUSRSBINLINKS)
62 $(POFILE): $(POFILES)
63 $(RM) $@
64 $(CAT) $(POFILES) > $@
66 clean:
67 -$(RM) $(OBJS) $(POFILE) $(POFILES)
69 include ../Makefile.targ