17c478bd9Sstevel@tonic-gate# 27c478bd9Sstevel@tonic-gate# CDDL HEADER START 37c478bd9Sstevel@tonic-gate# 47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the 569bb4bb4Scarlsonj# Common Development and Distribution License (the "License"). 669bb4bb4Scarlsonj# You may not use this file except in compliance with the License. 77c478bd9Sstevel@tonic-gate# 87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing. 107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions 117c478bd9Sstevel@tonic-gate# and limitations under the License. 127c478bd9Sstevel@tonic-gate# 137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each 147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the 167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying 177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner] 187c478bd9Sstevel@tonic-gate# 197c478bd9Sstevel@tonic-gate# CDDL HEADER END 207c478bd9Sstevel@tonic-gate# 217c478bd9Sstevel@tonic-gate# 22d04ccbb3Scarlsonj# Copyright 2007 Sun Microsystems, Inc. All rights reserved. 237c478bd9Sstevel@tonic-gate# Use is subject to license terms. 24b31320a7SChris Fraire# Copyright (c) 2016, Chris Fraire <cfraire@me.com>. 25f3655454SJohn Levon# Copyright 2020 Joyent, Inc. 26*dc2bdd79SJoshua M. Clulow# Copyright 2019 Joshua M. Clulow <josh@sysmgr.org> 277c478bd9Sstevel@tonic-gate# 287c478bd9Sstevel@tonic-gate 297c478bd9Sstevel@tonic-gatePROG = dhcpagent 307c478bd9Sstevel@tonic-gateROOTFS_PROG = $(PROG) 31a7872406SmeemDEFAULTFILES = dhcpagent.dfl 32a7872406Smeem 33e704a8f2SmeemOBJS = adopt.o agent.o async.o bound.o class_id.o defaults.o inform.o \ 34e704a8f2Smeem init_reboot.o interface.o ipc_action.o packet.o release.o renew.o \ 35e704a8f2Smeem request.o script_handler.o select.o states.o util.o 367c478bd9Sstevel@tonic-gate 377c478bd9Sstevel@tonic-gateinclude ../../../Makefile.cmd 38d14c4fc9SJoshua M. Clulowinclude ../../../Makefile.ctf 397c478bd9Sstevel@tonic-gate 40e704a8f2SmeemPOFILES = $(OBJS:%.o=%.po) 417c478bd9Sstevel@tonic-gateXGETFLAGS += -a -x dhcpagent.xcl 427c478bd9Sstevel@tonic-gate 437014882cSRichard LoweCERRWARN += -_gcc=-Wno-switch 447014882cSRichard LoweCERRWARN += -_gcc=-Wno-parentheses 457014882cSRichard Lowe 46*dc2bdd79SJoshua M. ClulowCSTD = $(CSTD_GNU99) 47*dc2bdd79SJoshua M. Clulow 485661bb76SJohn Levon# not linted 495661bb76SJohn LevonSMATCH=off 50e704a8f2SmeemCPPFLAGS += -D_XOPEN_SOURCE=500 -D__EXTENSIONS__ 51b31320a7SChris FraireLDLIBS += -lxnet -lnvpair -ldhcpagent -ldhcputil -linetutil -ldevinfo \ 52f3655454SJohn Levon -ldlpi -lresolv -lipadm 53d04ccbb3Scarlsonj 547c478bd9Sstevel@tonic-gate.KEEP_STATE: 557c478bd9Sstevel@tonic-gate 56a7872406Smeemall: $(ROOTFS_PROG) 577c478bd9Sstevel@tonic-gate 58a7872406Smeeminstall: all $(ROOTSBINPROG) $(ROOTETCDEFAULTFILES) 597c478bd9Sstevel@tonic-gate 607c478bd9Sstevel@tonic-gate$(PROG): $(OBJS) 617c478bd9Sstevel@tonic-gate $(LINK.c) -o $@ $(OBJS) $(LDLIBS) 627c478bd9Sstevel@tonic-gate $(POST_PROCESS) 637c478bd9Sstevel@tonic-gate 647c478bd9Sstevel@tonic-gate$(POFILE): $(POFILES) 657c478bd9Sstevel@tonic-gate $(RM) $@; $(CAT) $(POFILES) > $@; $(RM) $(POFILES) 667c478bd9Sstevel@tonic-gate 677c478bd9Sstevel@tonic-gateclean: 687c478bd9Sstevel@tonic-gate $(RM) $(OBJS) 697c478bd9Sstevel@tonic-gate 707c478bd9Sstevel@tonic-gateinclude ../../../Makefile.targ 71