6930152 6192139 (no reboot audit -- PSARC/2009/354) points out less than optimal...
[unleashed.git] / usr / src / cmd / expr / Makefile
blob44e0a20780a48295be299e6c89eddcf7638a6f6f
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.
25 # ident "%Z%%M% %I% %E% SMI"
27 PROG= expr
28 XPG4PROG= expr
29 XPG6PROG= expr
31 EXPROBJ= exprobjs/expr.o exprobjs/compile.o
32 XPG4EXPROBJ= exprobjs.xpg4/expr.o exprobjs.xpg4/compile.o
33 XPG6EXPROBJ= exprobjs.xpg6/expr.o exprobjs.xpg6/compile.o
35 OBJS= $(EXPROBJ) $(XPG4EXPROBJ) $(XPG6EXPROBJ)
36 SRCS= expr.c compile.c
38 include ../Makefile.cmd
40 CFLAGS += $(CCVERBOSE)
41 $(XPG4) := CFLAGS += -DXPG4
42 $(XPG6) := CFLAGS += -DXPG6
44 # This flag is being added only for SCO (x86) compatibility
45 CFLAGS += $(iBCS2FLAG)
47 XGETFLAGS += -a -x expr.xcl
49 LDLIBS += -lgen
51 MAPFILES = $(MAPFILE.INT) $(MAPFILE.NGB)
52 LDFLAGS += $(MAPFILES:%=-M%)
54 .KEEP_STATE:
56 all: $(PROG) $(XPG4) $(XPG6)
58 install: all $(ROOTPROG) $(ROOTXPG4PROG) $(ROOTXPG6PROG)
60 $(PROG): exprobjs $(EXPROBJ) $(MAPFILES)
61 $(LINK.c) $(EXPROBJ) -o $@ $(LDLIBS)
62 $(POST_PROCESS)
64 $(XPG4): exprobjs.xpg4 $(XPG4EXPROBJ) $(MAPFILES)
65 $(LINK.c) $(XPG4EXPROBJ) -o $@ $(LDLIBS)
66 $(POST_PROCESS)
68 $(XPG6): exprobjs.xpg6 $(XPG6EXPROBJ) $(MAPFILES)
69 $(LINK.c) $(XPG6EXPROBJ) -o $@ $(LDLIBS)
70 $(POST_PROCESS)
72 exprobjs/%.o: %.c
73 $(COMPILE.c) -o $@ $<
75 exprobjs.xpg4/%.o: %.c
76 $(COMPILE.c) -o $@ $<
78 exprobjs.xpg6/%.o: %.c
79 $(COMPILE.c) -o $@ $<
81 exprobjs:
82 -@mkdir -p $@
84 exprobjs.xpg4:
85 -@mkdir -p $@
87 exprobjs.xpg6:
88 -@mkdir -p $@
90 clean:
91 $(RM) $(OBJS)
93 lint: lint_PROG
95 include ../Makefile.targ