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 src/sun_nws/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 src/sun_nws/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 # Copyright 2007 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25 #ident "@(#)Makefile.common 1.37 07/11/15 SMI"
26 #
27 # src/sun_nws/Makefile.commmon
28
29 .KEEP_STATE:
30
31 .KEEP_STATE_FILE: .make.state.$(MACH)$(BUILD_TYPE)
32
33 $(BUIILD32)CLOBBERFILES += $(OBJ32)
34 $(BUIILD64)CLOBBERFILES += $(OBJ64)
35
36 MACROINCLUDES = -I$(COM_INC_FC)
37 MACROINCLUDES += -I$(COMMON_FC_IMPL_HDRS_DIR)
38 MACROINCLUDES += -I$(MOD_INC_FCIP)
39 MACROINCLUDES += -I$(MOD_INC_FCP)
40 MACROINCLUDES += -I$(MOD_INC_FCSM)
41 MACROINCLUDES += -I$(MOD_INC_FCTL)
42 MACROINCLUDES += -I$(MOD_INC_FP)
43 MACROINCLUDES += -I$(MOD_INC_QLC)
44 MACROINCLUDES += -I$(MOD_INC_QUS)
45 MACROINCLUDES += -I$(MOD_INC_SUNFC)
46 MACROINCLUDES += -I$(COM_INC_ISCSI)
47 MACROINCLUDES += -I$(MOD_INC_ISCSI)
48 MACROINCLUDES += -I$(MOD_INC_FCINFO)
49
50
51 sparc_ASM_CODE = $(ON_REF_GATE)/usr/src/uts/sparc/ml/sparc.il
52 i386_ASM_CODE =
53 ASM_CODE = $($(MACH)_ASM_CODE)
54
55 #
56 # Standard Targets
57 #
58
59 all: $(ALLPREQ)
60
61 install: $(INSTALLPREQ)
62
63 pkg: $(AWKPKGINFO) $(PKGPREQ)
64
65 $(DIRS):
66 mkdir -p $@
67
68 # -----------------------------------------------------------------------------
69 # Module lint library construction targets
70 # -----------------------------------------------------------------------------
|
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 src/sun_nws/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 src/sun_nws/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 # Copyright 2008 Sun Microsystems, Inc. All rights reserved.
23 # Use is subject to license terms.
24 #
25 #ident "@(#)Makefile.common 1.40 08/02/15 SMI"
26 #
27 # src/sun_nws/Makefile.commmon
28
29 .KEEP_STATE:
30
31 .KEEP_STATE_FILE: .make.state.$(MACH)$(BUILD_TYPE)
32
33 $(BUIILD32)CLOBBERFILES += $(OBJ32)
34 $(BUIILD64)CLOBBERFILES += $(OBJ64)
35
36 sparc_ASM_CODE = $(ON_REF_GATE)/usr/src/uts/sparc/ml/sparc.il
37 i386_ASM_CODE =
38 ASM_CODE = $($(MACH)_ASM_CODE)
39
40 #
41 # Standard Targets
42 #
43
44 all: $(ALLPREQ)
45
46 install: $(INSTALLPREQ)
47
48 pkg: $(AWKPKGINFO) $(PKGPREQ)
49
50 $(DIRS):
51 mkdir -p $@
52
53 # -----------------------------------------------------------------------------
54 # Module lint library construction targets
55 # -----------------------------------------------------------------------------
|