1 # 2 # 3 # CDDL HEADER START 4 # 5 # The contents of this file are subject to the terms of the 6 # Common Development and Distribution License (the "License"). 7 # You may not use this file except in compliance with the License. 8 # 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. 13 # 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] 19 # 20 # CDDL HEADER END 21 # 22 # Copyright 2007 Sun Microsystems, Inc. All rights reserved. 23 # Use is subject to license terms. 24 # 25 #pragma ident "@(#)Makefile.master.64 1.4 07/02/21 SMI" 26 27 # rebind basic build macros to 64-bit versions 28 29 CFLAGS= $(CFLAGS64) 30 CCFLAGS= $(CCFLAGS64) 31 COPTFLAG= $(COPTFLAG64) 32 CCOPTFLAG= $(CCOPTFLAG64) 33 COMPILE.c= $(COMPILE64.c) 34 COMPILE.s= $(COMPILE64.s) 35 COMPILE.cc= $(COMPILE64.cc) 36 LINK.c= $(LINK64.c) 37 LINK.cc= $(LINK64.cc) 38 LINT.c= $(LINT64.c) 39 40 # 41 # Some library path hackery, to allow building of partial workspaces 42 # and properly set the 64-bit library paths with 'ws' 43 # 44 LDLIBS1= $(ENVLDLIBS1:%=%/$(MACH64)) 45 LDLIBS2= $(ENVLDLIBS2:%=%/$(MACH64)) 46 LDLIBS3= $(ENVLDLIBS3:%=%/$(MACH64)) 47 LDLIBS64 = $(LDLIBS1) $(LDLIBS2) $(LDLIBS3) 48 # 49 # Moved these up to the top level here, so they can be overridden 50 # 51 LDLIBS.cmd = $(LDLIBS64) 52 LDLIBS.lib = $(LDLIBS64) 53 54 # 55 # Override Makefile.master's settings of CC, CCC, and AS 56 # 57 CC= $($(MACH64)_CC) 58 CCC= $($(MACH64)_CCC) 59 AS= $($(MACH64)_AS) 60 LD= $($(MACH64)_LD) 61 62 63 BUILD.SO= $(CC) $(CFLAGS) -o $@ -G $(DYNFLAGS) $(PICS) \ 64 -L $(ROOTLIBDIR64) $(LDLIBS) 65 BUILDCCC.SO= $(CCC) -o $@ -G $(DYNFLAGS) $(PICS) $(LDLIBS) -lCrun 66