xref: /illumos-gate/usr/src/cmd/fs.d/autofs/Makefile (revision a5f20e89)
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
539d3e169Sevanl# Common Development and Distribution License (the "License").
639d3e169Sevanl# 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
20d50bcaaeSAndrew Stormont#
21d50bcaaeSAndrew Stormont
227c478bd9Sstevel@tonic-gate#
23b56bf881SAntonello Cruz# Copyright (c) 1992, 2010, Oracle and/or its affiliates. All rights reserved.
24d50bcaaeSAndrew Stormont# Copyright 2015 RackTop Systems.
255661bb76SJohn Levon# Copyright (c) 2018, Joyent, Inc.
267c478bd9Sstevel@tonic-gate#
277c478bd9Sstevel@tonic-gate
287c478bd9Sstevel@tonic-gateFSTYPE=		autofs
297c478bd9Sstevel@tonic-gateAUTO=		automount
307c478bd9Sstevel@tonic-gateMOUNT=		mount
317c478bd9Sstevel@tonic-gateVERS=		.2
327c478bd9Sstevel@tonic-gateDFSHARES=	dfshares
337c478bd9Sstevel@tonic-gateSHARE=		share
347c478bd9Sstevel@tonic-gateUNSHARE=	unshare
357c478bd9Sstevel@tonic-gateLIBPROG=	$(AUTO) $(MOUNT) $(DFSHARES) $(SHARE) $(UNSHARE)
367c478bd9Sstevel@tonic-gateTYPEPROG=	automountd
377c478bd9Sstevel@tonic-gate
387c478bd9Sstevel@tonic-gateLINKINSTALL=	$(ROOTUSRSBIN)/$(AUTO)
397c478bd9Sstevel@tonic-gateLINKVALUE=	../lib/fs/$(FSTYPE)/$(AUTO)
407c478bd9Sstevel@tonic-gateMAPS=		auto_master auto_home
417c478bd9Sstevel@tonic-gateMAPINSTALL=	$(MAPS:%=$(ROOTETC)/%)
427c478bd9Sstevel@tonic-gateAUTOFS=		autofs
43a7872406SmeemDEFAULTFILES=	autofs.dfl
447c478bd9Sstevel@tonic-gateSMFMANIFEST=	autofs.xml
457c478bd9Sstevel@tonic-gateSMFMETHOD=	svc-autofs
467c478bd9Sstevel@tonic-gateMFSTINSTALL=	$(SMFMANIFEST:%=$(ROOTSVCSYSTEM)/filesystem/%)
477c478bd9Sstevel@tonic-gateMETHODINSTALL=	$(SMFMETHOD:%=$(ROOTLIBSVCMETHOD)/%)
487c478bd9Sstevel@tonic-gate
49a7872406SmeemOTHERINSTALL=	$(MAPINSTALL) $(LINKINSTALL) $(ROOTETCDEFAULTFILES) \
507c478bd9Sstevel@tonic-gate		$(MFSTINSTALL) $(METHODINSTALL)
517c478bd9Sstevel@tonic-gate
527c478bd9Sstevel@tonic-gateUNCHECKED_HDRS=	webnfs.h
537c478bd9Sstevel@tonic-gate
547c478bd9Sstevel@tonic-gateMANIFEST=	autofs.xml
557c478bd9Sstevel@tonic-gateSVCMETHOD=	svc-autofs
567c478bd9Sstevel@tonic-gate
577c478bd9Sstevel@tonic-gateinclude		../Makefile.fstype
587c478bd9Sstevel@tonic-gate
597c478bd9Sstevel@tonic-gate$(MAPINSTALL)	:= FILEMODE= 0644
607c478bd9Sstevel@tonic-gate
617c478bd9Sstevel@tonic-gate$(MFSTINSTALL)	:= FILEMODE = 0444
627c478bd9Sstevel@tonic-gate
637c478bd9Sstevel@tonic-gateREAL_COMMON=	debug_alloc.o
6436e852a1SRaja AndraCOMMON=		ns_generic.o ns_files.o ns_nis.o \
657c478bd9Sstevel@tonic-gate		ns_ldap.o auto_mnttab.o auto_subr.o $(REAL_COMMON)
667c478bd9Sstevel@tonic-gate
67dd51520eSPavan Mettu - Oracle Corporation - Menlo Park United StatesAUTOOBJS=	automount.o $(COMMON) $(FSLIB) smfcfg.o
687c478bd9Sstevel@tonic-gate
697c478bd9Sstevel@tonic-gateMOUNTOBJS=	mount.o $(FSLIB) $(REAL_COMMON)
707c478bd9Sstevel@tonic-gate
7139d3e169SevanlLOCAL=		autod_main.o \
727c478bd9Sstevel@tonic-gate		autod_parse.o autod_mount.o autod_nfs.o nfs_cast.o \
73dd51520eSPavan Mettu - Oracle Corporation - Menlo Park United States		autod_autofs.o autod_xdr.o autod_readdir.o autod_lookup.o \
74dd51520eSPavan Mettu - Oracle Corporation - Menlo Park United States		smfcfg.o
757c478bd9Sstevel@tonic-gate
762f172c55SRobert ThurlowTYPEOBJS=	$(LOCAL) $(COMMON) replica.o nfs_sec.o nfs_resolve.o nfs_subr.o \
772f172c55SRobert Thurlow		$(FSLIB) webnfs_xdr.o webnfs_client.o selfcheck.o
787c478bd9Sstevel@tonic-gate
797c478bd9Sstevel@tonic-gateSHAREOBJS=	$(SHARESRCS:%.c=%.o)
807c478bd9Sstevel@tonic-gate
817c478bd9Sstevel@tonic-gateUNSHAREOBJS=	$(UNSHARESRCS:%.c=%.o)
827c478bd9Sstevel@tonic-gate
837c478bd9Sstevel@tonic-gatePOFILE= autofs.po
847c478bd9Sstevel@tonic-gate
8502b17e23SRichard Lowe$(AUTO) :=	LDLIBS += -lnsl -lsldap -lscf
86b56bf881SAntonello Cruz$(MOUNT):=	LDLIBS += -lscf
87b56bf881SAntonello Cruz$(TYPEPROG) :=	LDLIBS += -lrpcsvc -lsocket -lnsl -lsldap -lkstat -lscf
887c478bd9Sstevel@tonic-gate
89*a5f20e89SToomas SoomeCSTD=		$(CSTD_GNU99)
90*a5f20e89SToomas Soome
9111606941SjwahligCFLAGS +=	$(CCVERBOSE) -D_FILE_OFFSET_BITS=64
922f172c55SRobert ThurlowCPPFLAGS=	-I. -I.. -I../nfs/lib $(CPPFLAGS.master) -D_REENTRANT  \
937c478bd9Sstevel@tonic-gate			$(MALLOC_DEBUG)
947014882cSRichard Lowe
957014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-parentheses
967014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-unused-variable
977014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-switch
98d3b5f563SJohn LevonCERRWARN +=	$(CNOWARN_UNINIT)
997014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-unused-label
1007014882cSRichard LoweCERRWARN +=	-_gcc=-Wno-unused-function
1017014882cSRichard Lowe
1025661bb76SJohn Levon# not linted
1035661bb76SJohn LevonSMATCH=off
1045661bb76SJohn Levon
1057c478bd9Sstevel@tonic-gateOBJS=		$(AUTOOBJS) $(MOUNTOBJS) $(TYPEOBJS) \
1067c478bd9Sstevel@tonic-gate		$(SHAREOBJS) $(UNSHAREOBJS)
1077c478bd9Sstevel@tonic-gate
1087c478bd9Sstevel@tonic-gateAUTOSRCS=	automount.c $(COMMON:%.o=%.c) $(FSLIBSRC)
1097c478bd9Sstevel@tonic-gateMOUNTSRCS=	mount.c $(FSLIBSRC)
1107c478bd9Sstevel@tonic-gateTYPESRCS=	$(LOCAL:%.o=%.c) $(COMMON:%.o=%.c) \
1117c478bd9Sstevel@tonic-gate		../nfs/lib/replica.c ../nfs/lib/nfs_sec.c \
1122f172c55SRobert Thurlow		../nfs/lib/nfs_subr.c $(FSLIBSRC) ../nfs/lib/selfcheck.c \
113dd51520eSPavan Mettu - Oracle Corporation - Menlo Park United States		../nfs/lib/nfs_resolve.c ../nfs/lib/smfcfg.c
1147c478bd9Sstevel@tonic-gateSHARESRCS=	$(SHARE:%=%.c)
1157c478bd9Sstevel@tonic-gateUNSHARESRCS=	$(UNSHARE:%=%.c)
1167c478bd9Sstevel@tonic-gateDFSHARESSRCS=	$(DFSHARES:%=%.sh)
1177c478bd9Sstevel@tonic-gateSRCS=		$(OBJS:%.o=%.c)
1187c478bd9Sstevel@tonic-gate
1197c478bd9Sstevel@tonic-gatenfs_sec.o :=	CPPFLAGS += -DWNFS_SEC_NEGO
1207c478bd9Sstevel@tonic-gate
1217c478bd9Sstevel@tonic-gate$(AUTO):	$(AUTOOBJS)
1227c478bd9Sstevel@tonic-gate		$(LINK.c) -o $@ $(AUTOOBJS) $(LDLIBS)
1237c478bd9Sstevel@tonic-gate		$(POST_PROCESS)
1247c478bd9Sstevel@tonic-gate
1257c478bd9Sstevel@tonic-gate$(MOUNT):	$(MOUNTOBJS)
1267c478bd9Sstevel@tonic-gate		$(LINK.c) -o $@ $(MOUNTOBJS) $(LDLIBS)
1277c478bd9Sstevel@tonic-gate		$(POST_PROCESS)
1287c478bd9Sstevel@tonic-gate
1297c478bd9Sstevel@tonic-gate$(TYPEPROG):	webnfs.h $(TYPEOBJS)
1307c478bd9Sstevel@tonic-gate		$(LINK.c) -o $@ $(TYPEOBJS) $(LDLIBS)
1317c478bd9Sstevel@tonic-gate		$(POST_PROCESS)
1327c478bd9Sstevel@tonic-gate
1337c478bd9Sstevel@tonic-gate$(SHARE):	$(SHAREOBJS)
134d50bcaaeSAndrew Stormont		$(LINK.c) -o $@ $(SHAREOBJS) $(LDLIBS)
1357c478bd9Sstevel@tonic-gate		$(POST_PROCESS)
1367c478bd9Sstevel@tonic-gate
1377c478bd9Sstevel@tonic-gate$(UNSHARE):	$(UNSHAREOBJS)
138d50bcaaeSAndrew Stormont		$(LINK.c) -o $@ $(UNSHAREOBJS) $(LDLIBS)
1397c478bd9Sstevel@tonic-gate		$(POST_PROCESS)
1407c478bd9Sstevel@tonic-gate
1417c478bd9Sstevel@tonic-gate$(ROOTSVCSYSTEM)/filesystem/%: %
1427c478bd9Sstevel@tonic-gate		$(INS.file)
1437c478bd9Sstevel@tonic-gate
1447c478bd9Sstevel@tonic-gateDUMP_PROG=malloc_dump
1457c478bd9Sstevel@tonic-gateBUILDDIR=tmp
1467c478bd9Sstevel@tonic-gateDUMP_PROTO=$(BUILDDIR)/$(DUMP_PROG)_client
1477c478bd9Sstevel@tonic-gateXFILE=$(BUILDDIR)/malloc_dump.x
1487c478bd9Sstevel@tonic-gateXLINE= "program DUMP { version VERS \
1497c478bd9Sstevel@tonic-gate	{ void DUMP_IT(void) = 1000000; } = 2; } = 100099;"
1507c478bd9Sstevel@tonic-gate
1517c478bd9Sstevel@tonic-gate$(XFILE):	$(BUILDDIR)
1527c478bd9Sstevel@tonic-gate		$(RM) $(XFILE)
15302b17e23SRichard Lowe		$(ECHO) $(XLINE) > $(XFILE)
1547c478bd9Sstevel@tonic-gate
1557c478bd9Sstevel@tonic-gate$(BUILDDIR):
1567c478bd9Sstevel@tonic-gate		$(RM) -r $(BUILDDIR)
15702b17e23SRichard Lowe		$(MKDIR) $(BUILDDIR)
1587c478bd9Sstevel@tonic-gate
1597c478bd9Sstevel@tonic-gate$(DUMP_PROTO):	$(BUILDDIR) $(XFILE)
1607c478bd9Sstevel@tonic-gate		cd $(BUILDDIR); $(RM) *.[ch] makefile.malloc_dump ; rpcgen -a `basename $(XFILE)
1617c478bd9Sstevel@tonic-gate		cd $(BUILDDIR); $(MAKE) -f makefile.malloc_dump `basename $@`
1627c478bd9Sstevel@tonic-gate
1637c478bd9Sstevel@tonic-gate$(DUMP_PROG):	$(DUMP_PROTO)
1647c478bd9Sstevel@tonic-gate		$(RM) $@
16502b17e23SRichard Lowe		$(CP) $(DUMP_PROTO) $@
1667c478bd9Sstevel@tonic-gate
1677c478bd9Sstevel@tonic-gateclean_dump:
1687c478bd9Sstevel@tonic-gate		$(RM) -r $(BUILDDIR)
1697c478bd9Sstevel@tonic-gate		$(RM) $(DUMP_PROG)
1707c478bd9Sstevel@tonic-gate$(ROOTUSRSBIN)/$(AUTO):
1717c478bd9Sstevel@tonic-gate		$(RM) $@; $(SYMLINK) $(LINKVALUE) $@
1727c478bd9Sstevel@tonic-gate
1737c478bd9Sstevel@tonic-gatereplica.o:	../nfs/lib/replica.c
1747c478bd9Sstevel@tonic-gate		$(COMPILE.c) ../nfs/lib/replica.c
1757c478bd9Sstevel@tonic-gate
1767c478bd9Sstevel@tonic-gatenfs_sec.o:	../nfs/lib/nfs_sec.c
1777c478bd9Sstevel@tonic-gate		$(COMPILE.c) ../nfs/lib/nfs_sec.c
1787c478bd9Sstevel@tonic-gate
1797c478bd9Sstevel@tonic-gatenfs_subr.o:	../nfs/lib/nfs_subr.c
1807c478bd9Sstevel@tonic-gate		$(COMPILE.c) ../nfs/lib/nfs_subr.c
1817c478bd9Sstevel@tonic-gate
1827c478bd9Sstevel@tonic-gateselfcheck.o:	../nfs/lib/selfcheck.c
1837c478bd9Sstevel@tonic-gate		$(COMPILE.c) ../nfs/lib/selfcheck.c
1847c478bd9Sstevel@tonic-gate
185dd51520eSPavan Mettu - Oracle Corporation - Menlo Park United Statessmfcfg.o: ../nfs/lib/smfcfg.c
186dd51520eSPavan Mettu - Oracle Corporation - Menlo Park United States		$(COMPILE.c) ../nfs/lib/smfcfg.c
187dd51520eSPavan Mettu - Oracle Corporation - Menlo Park United States
1882f172c55SRobert Thurlownfs_resolve.o:	../nfs/lib/nfs_resolve.c
1892f172c55SRobert Thurlow		$(COMPILE.c) ../nfs/lib/nfs_resolve.c
1907c478bd9Sstevel@tonic-gate
1917c478bd9Sstevel@tonic-gatewebnfs_xdr.c:	webnfs.x
192bfa62c28SVallish Vaidyeshwara	$(RPCGEN) -M -C -c -o $@ webnfs.x
1937c478bd9Sstevel@tonic-gate
1947c478bd9Sstevel@tonic-gatewebnfs_client.c:	webnfs.x
195bfa62c28SVallish Vaidyeshwara	$(RPCGEN) -M -C -l -o $@ webnfs.x
1967c478bd9Sstevel@tonic-gate
1977c478bd9Sstevel@tonic-gatewebnfs.h:	webnfs.x
198bfa62c28SVallish Vaidyeshwara	$(RPCGEN) -M -C -h -o $@ webnfs.x
1997c478bd9Sstevel@tonic-gate
2007c478bd9Sstevel@tonic-gatewebnfs.x:	../nfs/lib/webnfs.x
2017c478bd9Sstevel@tonic-gate	$(RM) webnfs.x
20202b17e23SRichard Lowe	$(CP) ../nfs/lib/webnfs.x .
2037c478bd9Sstevel@tonic-gate
2047c478bd9Sstevel@tonic-gatecatalog: $(POFILE)
2057c478bd9Sstevel@tonic-gate
2067c478bd9Sstevel@tonic-gate$(POFILE):
2077c478bd9Sstevel@tonic-gate	$(RM) messages.po
20802b17e23SRichard Lowe	$(SED) -e 's/pr_msg/gettext/' `$(EGREP) -l "pr_msg|gettext" *.[ch]` | \
2097c478bd9Sstevel@tonic-gate	$(XGETTEXT) $(XGETFLAGS) -
2107c478bd9Sstevel@tonic-gate	$(SED) -e '/^# msg/d' -e '/^domain/d' < messages.po > $@
2117c478bd9Sstevel@tonic-gate	$(RM) messages.po
2127c478bd9Sstevel@tonic-gate
2137c478bd9Sstevel@tonic-gateclean:	clean_dump
2147c478bd9Sstevel@tonic-gate	$(RM) $(OBJS) webnfs_xdr.c webnfs_client.c webnfs.h webnfs.x
2157c478bd9Sstevel@tonic-gate
2167c478bd9Sstevel@tonic-gatecheck:	$(CHKMANIFEST)
217