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. 267c478bd9Sstevel@tonic-gate# 277c478bd9Sstevel@tonic-gate 287c478bd9Sstevel@tonic-gatePROG = dhcpagent 297c478bd9Sstevel@tonic-gateROOTFS_PROG = $(PROG) 30a7872406SmeemDEFAULTFILES = dhcpagent.dfl 31a7872406Smeem 32e704a8f2SmeemOBJS = adopt.o agent.o async.o bound.o class_id.o defaults.o inform.o \ 33e704a8f2Smeem init_reboot.o interface.o ipc_action.o packet.o release.o renew.o \ 34e704a8f2Smeem request.o script_handler.o select.o states.o util.o 357c478bd9Sstevel@tonic-gate 367c478bd9Sstevel@tonic-gateinclude ../../../Makefile.cmd 37*d14c4fc9SJoshua M. Clulowinclude ../../../Makefile.ctf 387c478bd9Sstevel@tonic-gate 39e704a8f2SmeemPOFILES = $(OBJS:%.o=%.po) 407c478bd9Sstevel@tonic-gateXGETFLAGS += -a -x dhcpagent.xcl 417c478bd9Sstevel@tonic-gate 427014882cSRichard LoweCERRWARN += -_gcc=-Wno-switch 437014882cSRichard LoweCERRWARN += -_gcc=-Wno-parentheses 447014882cSRichard Lowe 455661bb76SJohn Levon# not linted 465661bb76SJohn LevonSMATCH=off 47e704a8f2SmeemCPPFLAGS += -D_XOPEN_SOURCE=500 -D__EXTENSIONS__ 48b31320a7SChris FraireLDLIBS += -lxnet -lnvpair -ldhcpagent -ldhcputil -linetutil -ldevinfo \ 49f3655454SJohn Levon -ldlpi -lresolv -lipadm 50d04ccbb3Scarlsonj 517c478bd9Sstevel@tonic-gate.KEEP_STATE: 527c478bd9Sstevel@tonic-gate 53a7872406Smeemall: $(ROOTFS_PROG) 547c478bd9Sstevel@tonic-gate 55a7872406Smeeminstall: all $(ROOTSBINPROG) $(ROOTETCDEFAULTFILES) 567c478bd9Sstevel@tonic-gate 577c478bd9Sstevel@tonic-gate$(PROG): $(OBJS) 587c478bd9Sstevel@tonic-gate $(LINK.c) -o $@ $(OBJS) $(LDLIBS) 597c478bd9Sstevel@tonic-gate $(POST_PROCESS) 607c478bd9Sstevel@tonic-gate 617c478bd9Sstevel@tonic-gate$(POFILE): $(POFILES) 627c478bd9Sstevel@tonic-gate $(RM) $@; $(CAT) $(POFILES) > $@; $(RM) $(POFILES) 637c478bd9Sstevel@tonic-gate 647c478bd9Sstevel@tonic-gateclean: 657c478bd9Sstevel@tonic-gate $(RM) $(OBJS) 667c478bd9Sstevel@tonic-gate 677c478bd9Sstevel@tonic-gateinclude ../../../Makefile.targ 68