Home | History | Annotate | Download | only in cifs-client
      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 2009 Sun Microsystems, Inc.  All rights reserved.
     24 # Use is subject to license terms.
     25 #
     26 # ident	"@(#)Makefile.defs	1.4	09/05/21 SMI"
     27 #
     28 
     29 BIN_DIR 	= $(CTI_SUITE)/bin
     30 LIB_DIR 	= $(CTI_SUITE)/lib
     31 OBJDIR		= obj_dir
     32 
     33 CTI_INC		= $(CTI_ROOT)/include
     34 CTI_LIB		= $(CTI_ROOT)/lib
     35 
     36 TET_INC		= $(TET_ROOT)/inc/tet3
     37 TET_LIB		= $(TET_ROOT)/lib/tet3
     38 
     39 #
     40 # Use these to fill in a common set of file dependencies.
     41 #
     42 COMMON_INC	= $(CTI_SUITE)/include
     43 COMMON_LIB	= $(CTI_SUITE)/lib
     44 COMMONDIR       = 
     45 COMMONFILES     = 
     46 
     47 #
     48 # Some commonly used tools
     49 #
     50 CAT	= /bin/cat
     51 CHMOD	= /bin/chmod
     52 CP	= /bin/cp -f
     53 ECHO	= echo
     54 MAKE	= /usr/ccs/bin/make
     55 MV	= /bin/mv -f
     56 PERL	= /usr/bin/perl
     57 RM	= /bin/rm -f
     58 
     59 all     := TARGET = all
     60 install := TARGET = install
     61 clean   := TARGET = clean
     62 clobber := TARGET = clobber
     63