xref: /illumos-gate/usr/src/cmd/cmd-inet/sbin/dhcpagent/Makefile (revision 5661bb7641e85c46713da7a3002b29ecd2c3daf0)
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>.
25*5661bb76SJohn Levon# Copyright (c) 2018, 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
377c478bd9Sstevel@tonic-gate
38e704a8f2SmeemSRCS    = $(OBJS:%.o=%.c)
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
45*5661bb76SJohn Levon# not linted
46*5661bb76SJohn LevonSMATCH=off
47*5661bb76SJohn Levon
487c478bd9Sstevel@tonic-gate#
497c478bd9Sstevel@tonic-gate# to compile a debug version, do a `make COPTFLAG="-g -XO0"'
507c478bd9Sstevel@tonic-gate#
517c478bd9Sstevel@tonic-gate
52e704a8f2SmeemCPPFLAGS  += -D_XOPEN_SOURCE=500 -D__EXTENSIONS__
53b31320a7SChris FraireLDLIBS    += -lxnet -lnvpair -ldhcpagent -ldhcputil -linetutil -ldevinfo \
54b31320a7SChris Fraire	-ldlpi -lresolv -lsocket -lipadm
55d04ccbb3Scarlsonj
56d04ccbb3Scarlsonj# Disable warnings that affect all XPG applications.
57d04ccbb3ScarlsonjLINTFLAGS += -erroff=E_INCONS_ARG_DECL2 -erroff=E_INCONS_VAL_TYPE_DECL2
587c478bd9Sstevel@tonic-gate
597c478bd9Sstevel@tonic-gate.KEEP_STATE:
607c478bd9Sstevel@tonic-gate
61a7872406Smeemall:		$(ROOTFS_PROG)
627c478bd9Sstevel@tonic-gate
63a7872406Smeeminstall:	all $(ROOTSBINPROG) $(ROOTETCDEFAULTFILES)
647c478bd9Sstevel@tonic-gate
657c478bd9Sstevel@tonic-gate$(PROG):	$(OBJS)
667c478bd9Sstevel@tonic-gate		$(LINK.c) -o $@ $(OBJS) $(LDLIBS)
677c478bd9Sstevel@tonic-gate		$(POST_PROCESS)
687c478bd9Sstevel@tonic-gate
697c478bd9Sstevel@tonic-gate$(POFILE):	$(POFILES)
707c478bd9Sstevel@tonic-gate		$(RM) $@; $(CAT) $(POFILES) > $@; $(RM) $(POFILES)
717c478bd9Sstevel@tonic-gate
727c478bd9Sstevel@tonic-gateclean:
737c478bd9Sstevel@tonic-gate		$(RM) $(OBJS)
747c478bd9Sstevel@tonic-gate
757c478bd9Sstevel@tonic-gatelint:		lint_SRCS
767c478bd9Sstevel@tonic-gate
777c478bd9Sstevel@tonic-gateinclude ../../../Makefile.targ
78