Print this page
6648 illumos build should be explicit about C standards
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/sgs/tools/Makefile.targ
+++ new/usr/src/cmd/sgs/tools/Makefile.targ
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.
↓ open down ↓ |
12 lines elided |
↑ open up ↑ |
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 #
20 20 # CDDL HEADER END
21 21 #
22 22 #
23 -# ident "%Z%%M% %I% %E% SMI"
24 23 #
25 24 # Copyright 2003 Sun Microsystems, Inc. All rights reserved.
26 25 # Use is subject to license terms.
27 26 #
28 -# cmd/sgs/tools/Makefile.targ
29 27
30 28
31 29 $(ROOTDIR)/bin/%: %
32 30 $(INS.file)
33 31
34 32 $(ROOTDIR)/lib/%: %
35 33 $(INS.file)
36 34
37 35 sgsmsg: $(SGSMSG_OBJS)
38 - $(NATIVECC) $(DEBUG) $(NATIVECC_CFLAGS) \
36 + $(NATIVECC) $(DEBUG) $(NATIVE_CFLAGS) \
39 37 -o $@ $(SGSMSG_OBJS)
40 38
41 39 sgsmsg.o: ../common/sgsmsg.c
42 - $(NATIVECC) $(DEBUG) $(NATIVECC_CFLAGS) -c ../common/sgsmsg.c
40 + $(NATIVECC) $(DEBUG) $(NATIVE_CFLAGS) -c ../common/sgsmsg.c
43 41
44 42 string_table.o: ../common/string_table.c
45 - $(NATIVECC) $(DEBUG) $(NATIVECC_CFLAGS) -c \
43 + $(NATIVECC) $(DEBUG) $(NATIVE_CFLAGS) -c \
46 44 ../common/string_table.c
47 45
48 46 avl.o: $(VAR_AVLDIR)/avl.c
49 - $(NATIVECC) $(DEBUG) $(NATIVECC_CFLAGS) -c \
47 + $(NATIVECC) $(DEBUG) $(NATIVE_CFLAGS) -c \
50 48 $(VAR_AVLDIR)/avl.c
51 49
52 50 piglatin: ../common/piglatin.c
53 - $(NATIVECC) $(NATIVECC_CFLAGS) -o $@ ../common/piglatin.c
51 + $(NATIVECC) $(NATIVE_CFLAGS) -o $@ ../common/piglatin.c
54 52
55 53 %: %.o
56 54 $(LINK.c) -o $@ $< $(LDLIBS)
57 55 $(POST_PROCESS)
58 56
59 57 %.o: ../common/%.c
60 58 $(COMPILE.c) -o $@ $<
61 59 $(POST_PROCESS_O)
62 60
63 61 catalog: sgsmsg
64 62
65 63 clobber: clean
66 64 $(RM) $(PROGS) $(NATIVE) $(CLOBBERFILES)
67 65
68 66 clean:
69 67 $(RM) $(OBJECTS) $(CLEANFILES)
70 68
71 69 lint:
72 70 @ echo "piglatin.c:" >> $(LINTOUT)
73 71 $(LINT.c) ../common/piglatin.c -lc >> $(LINTOUT) 2>&1
74 72 @ echo "sgsmsg" >> $(LINTOUT)
75 73 $(LINT.c) $(SGSMSG_SRCS) -lc >> $(LINTOUT) 2>&1
↓ open down ↓ |
12 lines elided |
↑ open up ↑ |
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX