xref: /illumos-gate/usr/src/cmd/ypcmd/yppasswd/Makefile (revision 85f4cb87104c72587029a6e0f1663332c85ba118)
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
506e1a714Sraf# Common Development and Distribution License (the "License").
606e1a714Sraf# 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#
22230167a0Sgww# Copyright (c) 1994, 2010, Oracle and/or its affiliates. All rights reserved.
237c478bd9Sstevel@tonic-gate#
24f3655454SJohn Levon# Copyright 2020 Joyent, Inc.
257c478bd9Sstevel@tonic-gate
26230167a0SgwwNETYPPROG =	rpc.yppasswdd
27a7872406SmeemDEFAULTFILES =	yppasswdd.dfl
287c478bd9Sstevel@tonic-gatePROG =		$(NETYPPROG)
297c478bd9Sstevel@tonic-gate
307c478bd9Sstevel@tonic-gateMANIFEST = passwd.xml
317c478bd9Sstevel@tonic-gate
327c478bd9Sstevel@tonic-gateinclude ../../Makefile.cmd
337c478bd9Sstevel@tonic-gate
347c478bd9Sstevel@tonic-gateROOTMANIFESTDIR = $(ROOTSVCNETWORKNIS)
357c478bd9Sstevel@tonic-gate
367c478bd9Sstevel@tonic-gate#installed directories
377c478bd9Sstevel@tonic-gateRPCSVC=		$(ROOT)/usr/include/rpcsvc
387c478bd9Sstevel@tonic-gateNETSVC =	$(ROOTLIB)/netsvc
397c478bd9Sstevel@tonic-gateNETYP =		$(NETSVC)/yp
40a7872406SmeemROOTDIRS =	$(NETSVC) $(NETYP)
417c478bd9Sstevel@tonic-gate
427c478bd9Sstevel@tonic-gate# include library definitions
437c478bd9Sstevel@tonic-gate#LDLIBS +=	-lrpcsvc -lnsl -lcrypt -lintl -lgen
4406e1a714SrafLDLIBS +=	-lnsl -lnisdb -lc
4524da5b34SrieMAPFILES =	$(MAPFILE.INT) $(MAPFILE.NGB)
46*85f4cb87SRichard LoweLDFLAGS +=	$(MAPFILES:%=-Wl,-M%)
477c478bd9Sstevel@tonic-gate
48*85f4cb87SRichard LoweZGUIDANCE =	-Wl,-zguidance=nounused
49f3655454SJohn Levon
507c478bd9Sstevel@tonic-gate# Pick up includes from library
517c478bd9Sstevel@tonic-gateCPPFLAGS += -I$(SRC)/lib/libnisdb/yptol
527c478bd9Sstevel@tonic-gate
537c478bd9Sstevel@tonic-gate# This file is now in the $(SRC)/head/rpcsvc directory.
547c478bd9Sstevel@tonic-gate#HDRFILE= yppasswd.h
557c478bd9Sstevel@tonic-gate#IHDRFILE= $(HDRFILE:%=$(RPCSVC)/%)
567c478bd9Sstevel@tonic-gate
577c478bd9Sstevel@tonic-gateINETYPPROG=		$(NETYPPROG:%=$(NETYP)/%)
587c478bd9Sstevel@tonic-gate
597c478bd9Sstevel@tonic-gateCOMMONOBJ =		yppasswdxdr.o yplckpwdf.o
607c478bd9Sstevel@tonic-gateRPCYPPASSWDDOBJ =	yppasswdd.o changepasswd.o
617c478bd9Sstevel@tonic-gate
627014882cSRichard LoweCERRWARN +=		-_gcc=-Wno-implicit-function-declaration
637014882cSRichard LoweCERRWARN +=		-_gcc=-Wno-parentheses
64d3b5f563SJohn LevonCERRWARN +=		$(CNOWARN_UNINIT)
657014882cSRichard Lowe
665661bb76SJohn Levon# not linted
675661bb76SJohn LevonSMATCH=off
685661bb76SJohn Levon
697c478bd9Sstevel@tonic-gate#
707c478bd9Sstevel@tonic-gate# Objects shared between all the major components
717c478bd9Sstevel@tonic-gate#
727c478bd9Sstevel@tonic-gateSHAREDOBJ= ../shared/utils.o ../shared/lockmap.o ../shared/ancil.o
737c478bd9Sstevel@tonic-gate
747c478bd9Sstevel@tonic-gateOBJS =			$(RPCYPPASSWDDOBJ) \
757c478bd9Sstevel@tonic-gate			$(COMMONOBJ)
767c478bd9Sstevel@tonic-gate			# $(YPPWCONVOBJ) $(YPPASSMGMTOBJ)
777c478bd9Sstevel@tonic-gate
787c478bd9Sstevel@tonic-gateSRCS =			$(OBJS:%.o=%.c)
797c478bd9Sstevel@tonic-gate
807c478bd9Sstevel@tonic-gate#conditional assignments
817c478bd9Sstevel@tonic-gate$(INETSVC)   := FILEMODE=555
827c478bd9Sstevel@tonic-gate
837c478bd9Sstevel@tonic-gate$(ETCDFLTFILE) := FILEMODE=0444
847c478bd9Sstevel@tonic-gate
857c478bd9Sstevel@tonic-gate#install rules
867c478bd9Sstevel@tonic-gate
877c478bd9Sstevel@tonic-gate.KEEP_STATE:
887c478bd9Sstevel@tonic-gate
897c478bd9Sstevel@tonic-gateall: $(PROG)
907c478bd9Sstevel@tonic-gate
9124da5b34Srierpc.yppasswdd: $(RPCYPPASSWDDOBJ) $(COMMONOBJ) $(MAPFILES)
927c478bd9Sstevel@tonic-gate	$(LINK.cc) -o $@ $(RPCYPPASSWDDOBJ) \
937c478bd9Sstevel@tonic-gate	$(SHAREDOBJ) $(COMMONOBJ) $(LDLIBS)
947c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
957c478bd9Sstevel@tonic-gate
96a7872406Smeeminstall: all $(ROOTDIRS) $(IBINPROG) $(INETYPPROG) $(ROOTETCDEFAULTFILES) \
977c478bd9Sstevel@tonic-gate	$(ROOTMANIFEST)
987c478bd9Sstevel@tonic-gate
997c478bd9Sstevel@tonic-gate$(ROOTDIRS):
1007c478bd9Sstevel@tonic-gate	$(INS.dir)
1017c478bd9Sstevel@tonic-gate
1027c478bd9Sstevel@tonic-gate$(NETYP)/%: %
1037c478bd9Sstevel@tonic-gate	$(INS.file)
1047c478bd9Sstevel@tonic-gate
1057c478bd9Sstevel@tonic-gateclean:
1067c478bd9Sstevel@tonic-gate	$(RM) $(OBJS)
1077c478bd9Sstevel@tonic-gate
1087c478bd9Sstevel@tonic-gatecheck: $(CHKMANIFEST)
1097c478bd9Sstevel@tonic-gate
1107c478bd9Sstevel@tonic-gatecstyle:
1117c478bd9Sstevel@tonic-gate	${CSTYLE} ${SRCS}
1127c478bd9Sstevel@tonic-gate
1137c478bd9Sstevel@tonic-gate# include library targets
1147c478bd9Sstevel@tonic-gateinclude ../../Makefile.targ
115