1 # 2 # CDDL HEADER START 3 # 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. 7 # 8 # You can obtain a copy of the license at usr/src/CDDL.txt 9 # or http://www.opensolaris.org/os/licensing. 10 # See the License for the specific language governing permissions 11 # and limitations under the License. 12 # 13 # When distributing Covered Code, include this CDDL HEADER in each 14 # file and include the License file at usr/src/CDDL.txt. 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] 18 # 19 # CDDL HEADER END 20 # 21 22 # 23 # Copyright 2007 Sun Microsystems, Inc. All rights reserved. 24 # Use is subject to license terms. 25 # 26 #pragma ident "@(#)Makefile.master.64 1.3 07/11/18 SMI" 27 28 # rebind basic build macros to 64-bit versions 29 30 CFLAGS= $(CFLAGS64) 31 CCFLAGS= $(CCFLAGS64) 32 COPTFLAG= $(COPTFLAG64) 33 CCOPTFLAG= $(CCOPTFLAG64) 34 COMPILE.c= $(COMPILE64.c) 35 COMPILE.s= $(COMPILE64.s) 36 COMPILE.cc= $(COMPILE64.cc) 37 LINK.c= $(LINK64.c) 38 LINK.cc= $(LINK64.cc) 39 LINT.c= $(LINT64.c) 40 41 # 42 # Some library path hackery, to allow building of partial workspaces 43 # and properly set the 64-bit library paths with 'ws' 44 # 45 LDLIBS1= $(ENVLDLIBS1:%=%/$(MACH64)) 46 LDLIBS2= $(ENVLDLIBS2:%=%/$(MACH64)) 47 LDLIBS3= $(ENVLDLIBS3:%=%/$(MACH64)) 48 LDLIBS64 = $(LDLIBS1) $(LDLIBS2) $(LDLIBS3) 49 50 # 51 # Moved these up to the top level here, so they can be overridden 52 # 53 LDLIBS.cmd = $(DEFAULT_LPATH:%/lib=%/lib/$(MACH64)) 54 LDLIBS.lib = $(DEFAULT_LPATH:%/lib=%/lib/$(MACH64)) 55 56 # 57 # Override Makefile.master's settings of CC, CCC, and AS 58 # 59 CC= $($(MACH64)_CC) 60 CCC= $($(MACH64)_CCC) 61 AS= $($(MACH64)_AS) 62 LD= $($(MACH64)_LD) 63 64 BUILD.SO= $(CC) $(CFLAGS) -o $@ -G $(STRIPFLAG) $(DYNFLAGS) $(PICS) \ 65 -L $(ROOTLIBDIR64) $(LDLIBS) 66 BUILDCCC.SO= $(CCC) $(CCFLAGS) -o $@ -G $(STRIPFLAG) $(DYNFLAGS) $(PICS) \ 67 $(LDLIBS) $(LIBCC) 68