xref: /illumos-gate/usr/src/cmd/fs.d/udfs/mkfs/Makefile (revision 2a8bcb4efb45d99ac41c94a75c396b362c414f7f)
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 (c) 1999,2001 by Sun Microsystems, Inc.
24# All rights reserved.
25#
26# Copyright (c) 2018, Joyent, Inc.
27
28FSTYPE=		udfs
29LIBPROG=	mkfs
30ATTMK=		$(LIBPROG)
31
32include		../../Makefile.fstype
33
34# for messaging catalog
35#
36POFILE= mkfs.po
37
38catalog:        $(POFILE)
39
40
41LDLIBS += -ladm
42
43MKFSOBJS=	mkfs.o udfslib.o
44
45UDFSDIR=	../../../../uts/common/fs/ufs
46#UDFSOBJS=	ufs_subr.o ufs_tables.o
47UDFSOBJS=
48
49CERRWARN +=	-_gcc=-Wno-parentheses
50
51# not linted
52SMATCH=off
53
54OBJS=		$(MKFSOBJS) $(UDFSOBJS)
55SRCS=		$(OBJS:%.o=%.c)
56
57$(LIBPROG):	$(OBJS)
58		$(LINK.c) -o $@ $(OBJS) $(LDLIBS)
59		$(POST_PROCESS)
60
61%.o:	$(UDFSDIR)/%.c
62	$(COMPILE.c) $<
63
64clean:
65	$(RM) $(OBJS)
66