xref: /illumos-gate/usr/src/uts/intel/genunix/Makefile (revision 02e56f3f)
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 2005 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# ident	"%Z%%M%	%I%	%E% SMI"
27#
28
29#
30#	This makefile drives the production of the generic
31#	unix kernel module.
32#
33#	x86 implementation architecture dependent
34#
35
36#
37#	Path to the base of the uts directory tree (usually /usr/src/uts).
38#
39UTSBASE	= ../..
40
41#
42#	Define the module and object file sets.
43#
44MODULE		= genunix
45GENUNIX		= $(OBJS_DIR)/$(MODULE)
46
47OBJECTS		= $(GENUNIX_OBJS:%=$(OBJS_DIR)/%) \
48		  $(NOT_YET_KMODS:%=$(OBJS_DIR)/%)
49
50LINTS		= $(GENUNIX_OBJS:%.o=$(LINTS_DIR)/%.ln) \
51		  $(NOT_YET_KMODS:%.o=$(LINTS_DIR)/%.ln)
52
53ROOTMODULE	= $(ROOT_KERN_DIR)/$(MODULE)
54
55LIBGEN		= $(OBJS_DIR)/libgenunix.so
56LIBSTUBS	= $(GENSTUBS_OBJS:%=$(OBJS_DIR)/%)
57
58#
59#	Include common rules.
60#
61include $(UTSBASE)/intel/Makefile.intel
62
63#
64#	Define targets
65#
66ALL_TARGET	= $(LIBGEN)
67LINT_TARGET	= $(MODULE).lint
68INSTALL_TARGET	= $(GENUNIX) $(ROOTMODULE)
69
70#
71#	Overrides
72#
73CLEANFILES	+= $(LIBSTUBS) $(LIBGEN)
74BINARY		=
75
76#
77# Non-patch genunix builds merge a version of the ip module called ipctf.  This
78# is to ensure that the common network-related types are included in genunix and
79# can thus be uniquified out of other modules.  We don't want to do this for
80# patch builds, since we can't guarantee that ip and genunix will be in the same
81# patch.
82#
83IPCTF_TARGET	= $(IPCTF)
84$(PATCH_BUILD)IPCTF_TARGET =
85
86CPPFLAGS	+= -I$(SRC)/common
87
88#
89#	Default build targets.
90#
91.KEEP_STATE:
92
93.PARALLEL:	$(LIBSTUBS)
94
95def:		$(DEF_DEPS)
96
97all:		$(ALL_DEPS)
98
99clean:		$(CLEAN_DEPS)
100
101clobber:	$(CLOBBER_DEPS)
102
103lint:		$(LINT_DEPS)
104
105modlintlib:	$(MODLINTLIB_DEPS)
106
107clean.lint:	$(CLEAN_LINT_DEPS)
108
109install:	$(INSTALL_DEPS)
110
111$(LIBGEN):	$(GENUNIX) $(LIBSTUBS)
112	$(BUILD.SO) $(GENUNIX) $(LIBSTUBS)
113
114$(IPCTF_TARGET) ipctf_target: FRC
115	@cd $(IPDRV_DIR); pwd; $(MAKE) ipctf.$(OBJS_DIR)
116	@pwd
117
118$(GENUNIX): $(IPCTF_TARGET) $(OBJECTS)
119	$(LD) -r $(LDFLAGS) -o $@ $(OBJECTS)
120	$(CTFMERGE_GENUNIX_MERGE)
121	$(POST_PROCESS)
122
123#
124#	Include common targets.
125#
126include $(UTSBASE)/intel/Makefile.targ
127
128#
129#	Software workarounds for hardware "features".
130#
131include	$(UTSBASE)/i86pc/Makefile.workarounds
132
133ALL_DEFS += $(WORKAROUND_DEFS)
134
135#
136# Override.
137#
138$(MODULE).lint := GEN_LINT_LIB =
139