xref: /illumos-gate/usr/src/cmd/zfs/Makefile (revision 4bc0a2ef)
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, Version 1.0 only
6# (the "License").  You may not use this file except in compliance
7# with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22#
23# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# ident	"%Z%%M%	%I%	%E% SMI"
27#
28
29PROG=		zfs
30OBJS=		zfs_main.o zfs_iter.o
31SRCS=		$(OBJS:%.o=%.c)
32POFILES=	zfs_main.po zfs_iter.po
33POFILE=		zfs.po
34
35include ../Makefile.cmd
36
37FSTYPE=         zfs
38LINKPROGS=	mount umount
39ROOTETCFSTYPE=  $(ROOTETC)/fs/$(FSTYPE)
40USRLIBFSTYPE=	$(ROOTLIB)/fs/$(FSTYPE)
41
42LDLIBS += -lzfs -luutil -lumem
43
44C99MODE=	-xc99=%all
45C99LMODE=	-Xc99=%all
46
47CPPFLAGS += -D_LARGEFILE64_SOURCE=1 -D_REENTRANT
48
49# lint complains about unused _umem_* functions
50LINTFLAGS += -xerroff=E_NAME_DEF_NOT_USED2
51LINTFLAGS64 += -xerroff=E_NAME_DEF_NOT_USED2
52
53ROOTUSRSBINLINKS = $(PROG:%=$(ROOTUSRSBIN)/%)
54USRLIBFSTYPELINKS = $(LINKPROGS:%=$(USRLIBFSTYPE)/%)
55ROOTETCFSTYPELINKS = $(LINKPROGS:%=$(ROOTETCFSTYPE)/%)
56
57.KEEP_STATE:
58
59.PARALLEL:
60
61all: $(PROG)
62
63$(PROG): $(OBJS)
64	$(LINK.c) -o $@ $(OBJS) $(LDLIBS)
65	$(POST_PROCESS)
66
67install: all $(ROOTSBINPROG) $(ROOTUSRSBINLINKS) $(USRLIBFSTYPELINKS) \
68	$(ROOTETCFSTYPELINKS)
69
70$(POFILE): $(POFILES)
71	$(RM) $@
72	cat $(POFILES) > $@
73
74clean:
75	$(RM) $(OBJS)
76
77lint:	lint_SRCS
78
79# Links from /usr/sbin to /sbin
80$(ROOTUSRSBINLINKS):
81	-$(RM) $@; $(SYMLINK) ../../sbin/$(PROG) $@
82
83# Links from /usr/lib/fs/zfs to /sbin
84$(USRLIBFSTYPELINKS):
85	-$(RM) $@; $(SYMLINK) ../../../../sbin/$(PROG) $@
86
87# Links from /etc/fs/zfs to /sbin
88$(ROOTETCFSTYPELINKS):
89	-$(RM) $@; $(SYMLINK) ../../../sbin/$(PROG) $@
90
91FRC:
92
93include ../Makefile.targ
94