move 32-bit libs to lib/i386 subdirs & 64-bit libs to lib/
[unleashed.git] / usr / src / cmd / sgs / lddstub / Makefile.targ
blob705a594edb39d92f2a4f41c657df963abb9d0443
2 # CDDL HEADER START
4 # The contents of this file are subject to the terms of the
5 # Common Development and Distribution License, Version 1.0 only
6 # (the "License").  You may not use this file except in compliance
7 # with the License.
9 # You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10 # or http://www.opensolaris.org/os/licensing.
11 # See the License for the specific language governing permissions
12 # and limitations under the License.
14 # When distributing Covered Code, include this CDDL HEADER in each
15 # file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16 # If applicable, add the following below this CDDL HEADER, with the
17 # fields enclosed by brackets "[]" replaced with your own identifying
18 # information: Portions Copyright [yyyy] [name of copyright owner]
20 # CDDL HEADER END
23 #pragma ident   "%Z%%M% %I%     %E% SMI"
25 # Copyright (c) 1994-2001 by Sun Microsystems, Inc.
26 # All rights reserved.
29 # The use of sed is a gross hack needed because the current build system
30 # assumed that the compiler accepted linker flags (-Bfoo -zfoo and -Mfoo)
31 # directly.  Here, since we're calling the linker directly, we have to
32 # discard the prefixes.  Ideally, we would be using the LD_Z* and LD_B*
33 # variables instead, but that would require a lot of mucking with makefiles.
34 # So for now, we do this.
35 REMOVE_GCC_PREFIX=echo $(LDFLAGS) | $(SED) -e 's/-Wl,//g' -e 's/\$$/\\$$/g'
37 .KEEP_STATE:
39 all:            $(PROG)
41 $(PROG):        $(OBJS)
42                 $(LD) -o $@ $(REMOVE_GCC_PREFIX:sh) $(OBJS)
43                 $(POST_PROCESS)
45 $(ROOTLIBEXEC)/%: %
46         $(INS.file)
47 $(ROOTLIBEXEC32)/%: %
48         $(INS.file)
50 clean:
51                 $(RM) $(OBJS) $(CLEANFILES)
53 delete:
54                 $(RM) $(PROG)
56 install:        all
58 include         ../../../Makefile.targ