xref: /titanic_41/usr/src/cmd/ypcmd/yppasswd/Makefile (revision 7014882c6a3672fd0e5d60200af8643ae53c5928)
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#
247c478bd9Sstevel@tonic-gate
25230167a0SgwwNETYPPROG =	rpc.yppasswdd
26a7872406SmeemDEFAULTFILES =	yppasswdd.dfl
277c478bd9Sstevel@tonic-gatePROG =		$(NETYPPROG)
287c478bd9Sstevel@tonic-gate
297c478bd9Sstevel@tonic-gateMANIFEST = passwd.xml
307c478bd9Sstevel@tonic-gate
317c478bd9Sstevel@tonic-gateinclude ../../Makefile.cmd
327c478bd9Sstevel@tonic-gate
337c478bd9Sstevel@tonic-gateROOTMANIFESTDIR = $(ROOTSVCNETWORKNIS)
347c478bd9Sstevel@tonic-gate
357c478bd9Sstevel@tonic-gate#installed directories
367c478bd9Sstevel@tonic-gateRPCSVC=		$(ROOT)/usr/include/rpcsvc
377c478bd9Sstevel@tonic-gateNETSVC =	$(ROOTLIB)/netsvc
387c478bd9Sstevel@tonic-gateNETYP =		$(NETSVC)/yp
39a7872406SmeemROOTDIRS =	$(NETSVC) $(NETYP)
407c478bd9Sstevel@tonic-gate
417c478bd9Sstevel@tonic-gate# include library definitions
427c478bd9Sstevel@tonic-gate#LDLIBS +=	-lrpcsvc -lnsl -lcrypt -lintl -lgen
4306e1a714SrafLDLIBS +=	-lnsl -lnisdb -lc
4424da5b34SrieMAPFILES =	$(MAPFILE.INT) $(MAPFILE.NGB)
4524da5b34SrieLDFLAGS +=	$(MAPFILES:%=-M%)
467c478bd9Sstevel@tonic-gate
477c478bd9Sstevel@tonic-gate# Pick up includes from library
487c478bd9Sstevel@tonic-gateCPPFLAGS += -I$(SRC)/lib/libnisdb/yptol
497c478bd9Sstevel@tonic-gate
507c478bd9Sstevel@tonic-gate# This file is now in the $(SRC)/head/rpcsvc directory.
517c478bd9Sstevel@tonic-gate#HDRFILE= yppasswd.h
527c478bd9Sstevel@tonic-gate#IHDRFILE= $(HDRFILE:%=$(RPCSVC)/%)
537c478bd9Sstevel@tonic-gate
547c478bd9Sstevel@tonic-gateINETYPPROG=		$(NETYPPROG:%=$(NETYP)/%)
557c478bd9Sstevel@tonic-gate
567c478bd9Sstevel@tonic-gateCOMMONOBJ =		yppasswdxdr.o yplckpwdf.o
577c478bd9Sstevel@tonic-gateRPCYPPASSWDDOBJ =	yppasswdd.o changepasswd.o
587c478bd9Sstevel@tonic-gate
59*7014882cSRichard LoweCERRWARN +=		-_gcc=-Wno-implicit-function-declaration
60*7014882cSRichard LoweCERRWARN +=		-_gcc=-Wno-parentheses
61*7014882cSRichard LoweCERRWARN +=		-_gcc=-Wno-uninitialized
62*7014882cSRichard Lowe
637c478bd9Sstevel@tonic-gate#
647c478bd9Sstevel@tonic-gate# Objects shared between all the major components
657c478bd9Sstevel@tonic-gate#
667c478bd9Sstevel@tonic-gateSHAREDOBJ= ../shared/utils.o ../shared/lockmap.o ../shared/ancil.o
677c478bd9Sstevel@tonic-gate
687c478bd9Sstevel@tonic-gateOBJS = 			$(RPCYPPASSWDDOBJ) \
697c478bd9Sstevel@tonic-gate			$(COMMONOBJ)
707c478bd9Sstevel@tonic-gate			# $(YPPWCONVOBJ) $(YPPASSMGMTOBJ)
717c478bd9Sstevel@tonic-gate
727c478bd9Sstevel@tonic-gateSRCS =			$(OBJS:%.o=%.c)
737c478bd9Sstevel@tonic-gate
747c478bd9Sstevel@tonic-gate#conditional assignments
757c478bd9Sstevel@tonic-gate$(INETSVC)   := FILEMODE=555
767c478bd9Sstevel@tonic-gate
777c478bd9Sstevel@tonic-gate$(ETCDFLTFILE) := FILEMODE=0444
787c478bd9Sstevel@tonic-gate
797c478bd9Sstevel@tonic-gate#install rules
807c478bd9Sstevel@tonic-gate
817c478bd9Sstevel@tonic-gate.KEEP_STATE:
827c478bd9Sstevel@tonic-gate
837c478bd9Sstevel@tonic-gateall: $(PROG)
847c478bd9Sstevel@tonic-gate
8524da5b34Srierpc.yppasswdd: $(RPCYPPASSWDDOBJ) $(COMMONOBJ) $(MAPFILES)
867c478bd9Sstevel@tonic-gate	$(LINK.cc) -o $@ $(RPCYPPASSWDDOBJ) \
877c478bd9Sstevel@tonic-gate	$(SHAREDOBJ) $(COMMONOBJ) $(LDLIBS)
887c478bd9Sstevel@tonic-gate	$(POST_PROCESS)
897c478bd9Sstevel@tonic-gate
90a7872406Smeeminstall: all $(ROOTDIRS) $(IBINPROG) $(INETYPPROG) $(ROOTETCDEFAULTFILES) \
917c478bd9Sstevel@tonic-gate	$(ROOTMANIFEST)
927c478bd9Sstevel@tonic-gate
937c478bd9Sstevel@tonic-gate$(ROOTDIRS):
947c478bd9Sstevel@tonic-gate	$(INS.dir)
957c478bd9Sstevel@tonic-gate
967c478bd9Sstevel@tonic-gate$(NETYP)/%: %
977c478bd9Sstevel@tonic-gate	$(INS.file)
987c478bd9Sstevel@tonic-gate
997c478bd9Sstevel@tonic-gateclean:
1007c478bd9Sstevel@tonic-gate	$(RM) $(OBJS)
1017c478bd9Sstevel@tonic-gate
1027c478bd9Sstevel@tonic-gatelint:	lint_SRCS
1037c478bd9Sstevel@tonic-gate
1047c478bd9Sstevel@tonic-gatecheck: $(CHKMANIFEST)
1057c478bd9Sstevel@tonic-gate
1067c478bd9Sstevel@tonic-gatecstyle:
1077c478bd9Sstevel@tonic-gate	${CSTYLE} ${SRCS}
1087c478bd9Sstevel@tonic-gate
1097c478bd9Sstevel@tonic-gate# include library targets
1107c478bd9Sstevel@tonic-gateinclude ../../Makefile.targ
111