# # CDDL HEADER START # # The contents of this file are subject to the terms of the # Common Development and Distribution License (the "License"). # You may not use this file except in compliance with the License. # # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE # or http://www.opensolaris.org/os/licensing. # See the License for the specific language governing permissions # and limitations under the License. # # When distributing Covered Code, include this CDDL HEADER in each # file and include the License file at usr/src/OPENSOLARIS.LICENSE. # If applicable, add the following below this CDDL HEADER, with the # fields enclosed by brackets "[]" replaced with your own identifying # information: Portions Copyright [yyyy] [name of copyright owner] # # CDDL HEADER END # # Copyright 2016 Toomas Soome # Copyright 2010 Sun Microsystems, Inc. All rights reserved. # Use is subject to license terms. # Copyright 2018 Joyent, Inc. # PROG = halt include ../Makefile.cmd # Hammerhead: hardlinks in /sbin ROOTLINKS = $(ROOTSBIN)/poweroff $(ROOTSBIN)/reboot ROOTSYMLINKS= $(ROOTETC)/halt $(ROOTETC)/reboot include ../Makefile.esssbin # Hammerhead: sparc_SUBDIRS removed - amd64 only build # Fast Reboot is x86 only. i386_SUBDIRS = smf.i386 SUBDIRS = $($(MACH)_SUBDIRS) FILEMODE = 0755 .KEEP_STATE: CPPFLAGS += -I../../lib/libzpool/common CPPFLAGS += -I../../lib/libscf/inc CPPFLAGS += -I../../uts/common/fs/zfs LDLIBS += -lbsm -lscf -lzfs -lgen LDLIBS_i386 += -lbe LDLIBS += $(LDLIBS_$(MACH)) # Hammerhead: Suppress zone_list pointer type mismatch warnings CERRWARN += -Wno-incompatible-pointer-types CLOBBERFILES += $(ROOTLINKS) $(ROOTSYMLINKS) all : TARGET = all install : TARGET = install clean : TARGET = clean clobber : TARGET = clobber lint : TARGET = lint lint : LINTFLAGS += -u all: $(PROG) install: all $(ROOTSBINPROG) $(ROOTLINKS) $(ROOTSYMLINKS) $(SUBDIRS) $(ROOTLINKS): $(ROOTSBINPROG) $(RM) $@ $(LN) $(ROOTSBINPROG) $@ $(ROOTSYMLINKS): $(RM) $@ $(SYMLINK) ../sbin/$(PROG) $@ $(SUBDIRS): FRC @cd $@; pwd; $(MAKE) $(TARGET) clean: clobber: $(SUBDIRS) lint: lint_PROG check: $(CHKMANIFEST) FRC: include ../Makefile.targ