Print this page
10051 cw(1) shouldn't have to translate -g
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/fs.d/pcfs/fsck/Makefile
+++ new/usr/src/cmd/fs.d/pcfs/fsck/Makefile
1 1 #
2 2 # CDDL HEADER START
3 3 #
4 4 # The contents of this file are subject to the terms of the
5 5 # Common Development and Distribution License (the "License").
6 6 # You may not use this file except in compliance with the License.
7 7 #
8 8 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9 9 # or http://www.opensolaris.org/os/licensing.
10 10 # See the License for the specific language governing permissions
11 11 # and limitations under the License.
12 12 #
13 13 # When distributing Covered Code, include this CDDL HEADER in each
14 14 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15 15 # If applicable, add the following below this CDDL HEADER, with the
16 16 # fields enclosed by brackets "[]" replaced with your own identifying
17 17 # information: Portions Copyright [yyyy] [name of copyright owner]
18 18 #
19 19 # CDDL HEADER END
20 20 #
21 21 #
22 22 # Copyright 2006 Sun Microsystems, Inc. All rights reserved.
23 23 # Use is subject to license terms.
24 24 #
25 25
26 26 FSTYPE= pcfs
27 27 LIBPROG= fsck
28 28 ATTMK= $(LIBPROG)
29 29
30 30 include ../../Makefile.fstype
31 31
32 32 FSCKOBJS= fsck.o bpb.o clusters.o fat.o dir.o pcfs_common.o
33 33 FSCKSRCS= $(FSCKOBJS:%.o=%.c)
34 34
35 35 #
36 36 # Error injection module for debugging purposes
37 37 #
38 38 #DEBUGOBJS= inject.o
39 39 #DEBUGSRCS= $(DEBUGOBJS:%.o=%.c)
40 40
↓ open down ↓ |
40 lines elided |
↑ open up ↑ |
41 41 OBJS= $(FSCKOBJS) $(DEBUGOBJS)
42 42 SRCS= $(FSCKSRCS) $(DEBUGSRCS)
43 43 LSRCS= $(FSCKSRCS) $(DEBUGSRCS)
44 44
45 45 # for messaging catalog
46 46 #
47 47 POFILE= fsck.po
48 48
49 49 catalog: $(POFILE)
50 50
51 -#
52 -# Uncomment the following two lines to build for dbx debugging
53 -#COPTFLAG = -g
54 -#COPTFLAG64 = -g
55 -#
56 51 CPPFLAGS += -D_LARGEFILE64_SOURCE
57 52
58 53 CERRWARN += -_gcc=-Wno-parentheses
59 54 CERRWARN += -_gcc=-Wno-unused-variable
60 55 CERRWARN += -_gcc=-Wno-uninitialized
61 56
62 57 #
63 58 # We need to tell lint not to complain about the routines
64 59 # we are grabbing from the kernel as being undefined.
65 60 #
66 61 LINTFLAGS += -u
67 62
68 63 $(LIBPROG): $(OBJS)
69 64 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
70 65 $(POST_PROCESS)
71 66
72 67 lint_LSRCS:
73 68 $(LINT.c) $(LSRCS) $(LDLIBS)
74 69
75 70 lint: lint_LSRCS
76 71
77 72 clean:
78 73 $(RM) $(FSCKOBJS) $(DEBUGOBJS)
↓ open down ↓ |
13 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX