xref: /illumos-gate/usr/src/cmd/fs.d/Makefile (revision 9e573dcc)
1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21# Copyright (c) 1990, 2010, Oracle and/or its affiliates. All rights reserved.
22#
23
24# The filesystem independent utilities clri, fsdb, dcopy, labelit, and mkfs
25# are all built from the source file switchout.c. They are all then links
26# to the same object. This is accomplished by:
27#	1) building clri from switchout.c (had to choose one)
28#	2) installing it in the target directory
29#	3) linking the others to clri.
30# In a similar manner, ncheck is linked to ff.
31
32DFPROG=		df
33PROG=		$(DFPROG) fsck volcopy ff
34ROOTFS_PROG=	mount umount
35SPPROG=		clri
36MNTTAB=		mnttab
37DEFAULTFILES=	fs.dfl
38
39include ../Makefile.cmd
40
41SUBDIR1= lofs zfs
42SUBDIR2= dev fd pcfs nfs hsfs proc ctfs udfs ufs tmpfs cachefs \
43		autofs mntfs objfs sharefs smbclnt reparsed
44SUBDIRS= $(SUBDIR1) $(SUBDIR2)
45I18NDIRS= $(SUBDIR2)
46
47CLEANFILES +=	deffs.o df.o ff.o fsck.o fssnapsup.o \
48		mount.o preenlib.o switchout.o umount.o volcopy.o
49
50all:=		TARGET= all
51install:=	TARGET= install
52clean:=		TARGET= clean
53clobber:=	TARGET= clobber
54lint:=		TARGET= lint
55_msg:=          TARGET= catalog
56
57USRSBINF=	df clri fsck volcopy ff
58USRSBINCLRI=	dcopy fsdb fssnap labelit mkfs
59USRSBINFF=	ncheck
60
61ETC2SBIN=	mount umount
62ETC2USRSBIN=	clri fsdb mkfs fsck labelit dcopy volcopy ff ncheck
63USRBIN2USRSBIN=	df
64USRXPG4BIN2USRSBIN= df
65
66FSLIB=		fslib.o
67
68ROOTSBINPROG = $(ROOTFS_PROG:%=$(ROOTSBIN)/%)
69ROOTUSRSBINLINKS = $(ROOTFS_PROG:%=$(ROOTUSRSBIN)/%)
70
71ROOTUSRSBINF=		$(USRSBINF:%=$(ROOTUSRSBIN)/%)
72ROOTUSRSBINCLRI=	$(USRSBINCLRI:%=$(ROOTUSRSBIN)/%)
73ROOTUSRSBINFF=		$(USRSBINFF:%=$(ROOTUSRSBIN)/%)
74ROOTETCMNTTAB=		$(MNTTAB:%=$(ROOTETC)/%)
75SYMETC2SBIN	=	$(ETC2SBIN:%=$(ROOTETC)/%)
76SYMETC2USRSBIN	=	$(ETC2USRSBIN:%=$(ROOTETC)/%)
77SYMUSRBIN2USRSBIN=	$(USRBIN2USRSBIN:%=$(ROOTBIN)/%)
78SYMUSRXPG4BIN2USRSBIN=	$(USRXPG4BIN2USRSBIN:%=$(ROOTXPG4BIN)/%)
79SYMDEVNM=		$(ROOTUSRSBIN)/devnm
80
81CPPFLAGS += -D_LARGEFILE64_SOURCE
82
83CERRWARN += -_gcc=-Wno-implicit-function-declaration
84CERRWARN += -_gcc=-Wno-parentheses
85CERRWARN += -_gcc=-Wno-unused-variable
86CERRWARN += -_gcc=-Wno-uninitialized
87CERRWARN += -_gcc=-Wno-unused-function
88
89$(SPPROG) :=	LDLIBS += -lkstat
90
91$(ROOTETCMNTTAB) := FILEMODE = 444
92
93# for messaging catalog
94#
95POFILE= fs.d.po
96POFILES1= $(PROG:%=%.po) $(ROOTFS_PROG:%=%.po) switchout.po fssnapsup.po
97POFILES2= $(I18NDIRS:%=%/%.po)
98POFILES=  $(POFILES1) $(POFILES2)
99volcopy.po :=   XGETFLAGS += -a -x volcopy.xcl
100$(DFPROG).po := XGETFLAGS += -a -x df.xcl
101
102.KEEP_STATE:
103
104# This is too intense when building the whole world.
105# .PARALLEL:	$(SUBDIRS)
106
107all:		$(FSLIB) .WAIT $(SUBDIRS) .WAIT all_local
108
109_msg: $(I18NDIRS) $(POFILES1)
110	$(RM) $(POFILE)
111	cat $(POFILES) > $(POFILE)
112	$(RM) $(MSGDOMAIN)/$(POFILE)
113	cp $(POFILE) $(MSGDOMAIN)
114
115all_local:	$(PROG) $(ROOTFS_PROG) $(SPPROG) $(MNTTAB) \
116		$(DEFAULTFILES)
117
118ff volcopy: deffs.o $$(@F).o
119		$(LINK.c) -o $@ $@.o deffs.o $(LDLIBS)
120		$(POST_PROCESS)
121
122df: deffs.o $(FSLIB) $$(@F).o
123	$(LINK.c) -o $@ $@.o deffs.o $(FSLIB) $(LDLIBS)
124	$(POST_PROCESS)
125
126fsck: fsck.o deffs.o preenlib.o
127	$(LINK.c) -o $@ fsck.o deffs.o preenlib.o $(LDLIBS)
128	$(POST_PROCESS)
129
130mount: deffs.o mount.o $(FSLIB)
131	$(LINK.c) -o $@ mount.o deffs.o $(FSLIB) $(LDLIBS)
132	$(POST_PROCESS)
133
134umount: umount.o $(FSLIB)
135	$(LINK.c) -o $@ umount.o $(FSLIB) $(LDLIBS)
136	$(POST_PROCESS)
137
138$(SPPROG):	switchout.o deffs.o fssnapsup.o
139	$(LINK.c) -o $@ switchout.o deffs.o fssnapsup.o $(LDLIBS) -ldiskmgt
140	$(POST_PROCESS)
141
142install: $(FSLIB) .WAIT $(SUBDIRS) .WAIT install_local
143
144install_local:	all_local $(ROOTSBINPROG) $(ROOTUSRSBINF) $(ROOTUSRSBINCLRI) \
145		$(ROOTUSRSBINFF) $(ROOTETCMNTTAB) $(ROOTETCDEFAULTFILES) \
146		$(SYMETC2SBIN) $(SYMETC2USRSBIN) \
147		$(SYMUSRBIN2USRSBIN) $(SYMUSRXPG4BIN2USRSBIN) $(SYMDEVNM) \
148		$(ROOTUSRSBINLINKS)
149
150# Links from /etc to /sbin such as /etc/mount -> ../sbin/mount
151$(SYMETC2SBIN):
152	-$(RM) $@; $(SYMLINK) ../sbin/$(@F) $@
153
154# Links from /etc to /usr/sbin such as /etc/clri -> ../usr/sbin/clri
155$(SYMETC2USRSBIN):
156	-$(RM) $@; $(SYMLINK) ../usr/sbin/$(@F) $@
157
158# Links from /usr/bin to /usr/sbin such as /usr/bin/df -> ../sbin/df
159$(SYMUSRBIN2USRSBIN):
160	-$(RM) $@; $(SYMLINK) ../sbin/$(@F) $@
161
162# Links from /usr/xpg4/bin to /usr/sbin such as /usr/xpg4/bin/df -> ../sbin/df
163$(SYMUSRXPG4BIN2USRSBIN):
164	-$(RM) $@; $(SYMLINK) ../../sbin/$(@F) $@
165
166# Links from /usr/sbin to /sbin such as /usr/sbin/mount -> ../../sbin/mount
167$(ROOTUSRSBINLINKS):
168	-$(RM) $@; $(SYMLINK) ../../sbin/$(@F) $@
169
170# Symlink from devnm to df in /usr/sbin
171$(SYMDEVNM):
172	-$(RM) $@; $(SYMLINK) ./df $@
173
174# Multiple names for switchout (clri, dcopy, fsdb, labelit, mkfs)
175$(ROOTUSRSBINCLRI):	$(ROOTUSRSBIN)/clri
176	-$(RM) $@; $(SYMLINK) ./clri $@
177
178$(MNTTAB):
179	touch $(MNTTAB)
180
181fs.dfl:
182	$(RM) $@; $(ECHO) "LOCAL=ufs" >$@
183
184# Multiple names for ff (ncheck)
185$(ROOTUSRSBINFF):	$(ROOTUSRSBIN)/ff
186	-$(RM) $@; $(SYMLINK) ./ff $@
187
188clean: $(SUBDIRS) .WAIT clean_local
189clean_local:
190	$(RM) $(CLEANFILES)
191
192clobber: $(SUBDIRS) .WAIT clobber_local
193clobber_local:	clean_local
194	$(RM) $(PROG) $(ROOTFS_PROG) $(SPPROG) $(MNTTAB) $(DEFAULTFILES) \
195	$(CLOBBERFILES)
196
197lint:
198
199$(SUBDIRS): FRC
200	@cd $@; pwd; $(MAKE) $(MFLAGS) $(TARGET)
201
202FRC:
203