Print this page
9852 enable ld(1) guidance and deflib assertions for the illumos build
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/tools/cscope-fast/Makefile
+++ new/usr/src/tools/cscope-fast/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, Version 1.0 only
6 6 # (the "License"). You may not use this file except in compliance
7 7 # with the License.
8 8 #
9 9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 10 # or http://www.opensolaris.org/os/licensing.
11 11 # See the License for the specific language governing permissions
12 12 # and limitations under the License.
13 13 #
14 14 # When distributing Covered Code, include this CDDL HEADER in each
15 15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 16 # If applicable, add the following below this CDDL HEADER, with the
17 17 # fields enclosed by brackets "[]" replaced with your own identifying
18 18 # information: Portions Copyright [yyyy] [name of copyright owner]
19 19 #
↓ open down ↓ |
19 lines elided |
↑ open up ↑ |
20 20 # CDDL HEADER END
21 21 #
22 22
23 23 #
24 24 # Copyright 2004 Sun Microsystems, Inc. All rights reserved.
25 25 # Use is subject to license terms.
26 26 #
27 27
28 28 PROG= cscope-fast
29 29
30 -OBJS= main.o dir.o crossref.o scanner.o lookup.o command.o display.o \
30 +OBJS= main.o dir.o crossref.o scanner.o lookup.o command.o display.o \
31 31 find.o edit.o exec.o help.o history.o input.o menu.o alloc.o \
32 32 cgrep.o compath.o invlib.o logdir.o \
33 33 mouse.o mygetenv.o mygetwd.o mypopen.o \
34 34 vpaccess.o vpfopen.o vpinit.o vpopen.o vpstat.o
35 35 SRCS= $(OBJS:%.o=%.c)
36 36 CLEANFILES += $(OBJS) scanner.c
37 37 TMPDIR= /tmp
38 38
39 39 include ../Makefile.tools
40 40
41 41 # these three are because we cannot seem to redefine the size of YYLMAX,
42 42 # and thus yytext, in the code because yytext is defined before our code
43 43 # is seen. YYLMAX is supposed to be STMTMAX+PATLEN+1.
44 44 PATLEN= 250
↓ open down ↓ |
4 lines elided |
↑ open up ↑ |
45 45 STMTMAX= 10000
46 46 YYLMAX= 10251
47 47 CFLAGS += -DPATLEN=$(PATLEN) -DSTMTMAX=$(STMTMAX) -DYYLMAX=$(YYLMAX)
48 48 CERRWARN += -_gcc=-Wno-parentheses
49 49 CERRWARN += -_gcc=-Wno-implicit-function-declaration
50 50 CERRWARN += -_gcc=-Wno-unused
51 51 CERRWARN += -_gcc=-Wno-uninitialized
52 52
53 53 CFLAGS += $(CCVERBOSE)
54 54 LDLIBS += -lcurses -ll
55 +NATIVE_LIBS += libcurses.so libl.so
55 56
56 57 .KEEP_STATE:
57 58
58 59 .PARALLEL: $(OBJS)
59 60
60 61 all: $(PROG)
61 62
62 63 # because of goto's in the scanner
63 64 scanner.o := CCVERBOSE=
64 65
65 66 $(PROG): $(OBJS)
66 67 $(LINK.c) -o $@ $(OBJS) $(LDLIBS)
67 68 $(POST_PROCESS)
68 69
69 70 install: all .WAIT $(ROOTONBLDMACHPROG)
70 71
71 72 clean:
72 73 $(RM) $(CLEANFILES)
73 74
74 75 lint: lint_SRCS
75 76
76 77 include ../Makefile.targ
↓ open down ↓ |
12 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX