dmake: do not set MAKEFLAGS=k
[unleashed/tickless.git] / usr / src / cmd / fs.d / ufs / fsck / Makefile
blob6a10417ad736c1defc7bbf1ace68033890db390b
2 # CDDL HEADER START
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.
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.
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]
19 # CDDL HEADER END
22 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
26 FSTYPE= ufs
27 LIBPROG= fsck
28 ATTMK= $(LIBPROG)
30 include ../../Makefile.fstype
31 include ../Makefile.roll
33 FSCKOBJS= main.o dir.o dup_avl.o inode.o pass1.o pass1b.o \
34 pass2.o \
35 pass3.o pass3b.o pass4.o pass5.o setup.o \
36 utilities.o
37 FSCKSRCS= $(FSCKOBJS:%.o=%.c)
39 UFSDIR= ../../../../../../kernel/fs/ufs
40 UFSOBJS= ufs_subr.o ufs_tables.o
41 UFSSRCS= $(UFSOBJS:%.o=$(UFSDIR)/%.c)
42 ROLLDIR= ../roll_log
44 OBJS= $(FSCKOBJS) $(UFSOBJS) $(ROLLOBJS) $(FSLIB)
45 SRCS= $(FSCKSRCS) $(UFSSRCS) $(ROLLSRCS) $(FSLIBSRC)
47 CPPFLAGS += -D_LARGEFILE64_SOURCE -I../../ -I../../../../lib/libadm/inc
48 LDLIBS += -lefi -lavl
50 CERRWARN += -Wno-parentheses
51 CERRWARN += -Wno-implicit-function-declaration
52 CERRWARN += -Wno-uninitialized
54 $(LIBPROG): $(OBJS)
55 $(LINK.c) -o $@ $(OBJS) $(LDLIBS) $(CTFMERGE_HOOK)
56 $(POST_PROCESS)
58 %.o: $(UFSDIR)/%.c
59 $(COMPILE.c) $< $(CTFCONVERT_HOOK)
61 SECLEVEL=core
63 clean:
64 $(RM) $(FSCKOBJS) $(UFSOBJS)
66 FRC: