Home | History | Annotate | Download | only in ucbcmd
      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/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.
     12 #
     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]
     18 #
     19 # CDDL HEADER END
     20 #
     21 
     22 #
     23 # Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
     24 # Use is subject to license terms.
     25 #
     26 # ident	"%Z%%M%	%I%	%E% SMI"
     27 #
     28 # ucbcmd/Makefile.ucbcmd
     29 #
     30 # Definitions common to ucb command source.
     31 #
     32 # include global definitions; SRC should be defined in the shell.
     33 # SRC is needed until RFE 1026993 is implemented.
     34 
     35 include $(SRC)/Makefile.master
     36 
     37 LN=		ln
     38 CP=		cp
     39 SH=		sh
     40 CHMOD=		chmod
     41 MKDIR=		mkdir
     42 TOUCH=		touch
     43 
     44 FILEMODE=	0555
     45 LIBFILEMODE=	0444
     46 ROOTBIN=	$(ROOT)/usr/ucb
     47 ROOTLIB=	$(ROOT)/usr/ucblib
     48 ROOT4LIB=	$(ROOT)/usr/4lib
     49 ROOTETC=	$(ROOT)/etc
     50 ROOTSHLIB=	$(ROOT)/usr/share/lib
     51 ROOTBIN32=	$(ROOTBIN)/$(MACH32)
     52 ROOTBIN64=	$(ROOTBIN)/$(MACH64)
     53 
     54 ROOTPROG=	$(PROG:%=$(ROOTBIN)/%)
     55 ROOTLIBPROG=	$(PROG:%=$(ROOTLIB)/%)
     56 ROOT4LIBPROG=	$(PROG:%=$(ROOT4LIB)/%)
     57 ROOTETCPROG=	$(PROG:%=$(ROOTETC)/%)
     58 ROOTPROG64=	$(PROG:%=$(ROOTBIN64)/%)
     59 ROOTPROG32=	$(PROG:%=$(ROOTBIN32)/%)
     60 
     61 ISAEXEC=	$(ROOT)/usr/lib/isaexec
     62 
     63 # storing LDLIBS in two macros allows reordering of options
     64 LDLIBS.cmd =    $(ENVLDLIBS1)  $(ENVLDLIBS2)  $(ENVLDLIBS3)
     65 LDLIBS =        $(LDLIBS.cmd)
     66 
     67 LDFLAGS.cmd = \
     68 	$(ENVLDFLAGS1) $(ENVLDFLAGS2) $(ENVLDFLAGS3) \
     69 	$(MAPFILE.NES:%=-M%) $(MAPFILE.PGA:%=-M%) $(MAPFILE.NED:%=-M%)
     70 
     71 LDFLAGS =       $(LDFLAGS.cmd)
     72 
     73 $(ROOTBIN)/%: %
     74 	$(INS.file)
     75 
     76 $(ROOTLIB)/%: %
     77 	$(INS.file)
     78 
     79 $(ROOT4LIB)/%: %
     80 	$(INS.file)
     81 
     82 $(ROOTETC)/%: %
     83 	$(INS.file)
     84 
     85 $(ROOTBIN64)/%: %
     86 	$(INS.file)
     87 
     88 $(ROOTBIN32)/%: %
     89 	$(INS.file)
     90 
     91 # Define the majority text domain in this directory
     92 TEXT_DOMAIN= SUNW_OST_UCBCMD
     93