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 29# 30# This makefile drives the production of the generic 31# unix kernel module. 32# 33# sparc 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_PSM_KERN_DIR)/$(MODULE) 54 55PLATFORM = sun4u 56LIBGEN = $(OBJS_DIR)/libgenunix.so 57LIBSTUBS = $(GENSTUBS_OBJS:%=$(OBJS_DIR)/%) 58 59# 60# Include common rules. 61# 62include $(UTSBASE)/sparc/Makefile.sparc 63 64# 65# Define targets 66# 67ALL_TARGET = $(LIBGEN) 68LINT_TARGET = $(MODULE).lint 69INSTALL_TARGET = $(GENUNIX) $(ROOTMODULE) 70 71# 72# Override defaults 73# 74CLEANFILES += $(LIBSTUBS) $(LIBGEN) 75 76LINT_LIB_DIR = $(UTSBASE)/$(PLATFORM)/lint-libs/$(OBJS_DIR) 77LINT_LIB = $(LINT_LIB_DIR)/llib-lunix.ln 78GEN_LINT_LIB = 79 80BINARY = 81 82CLOBBERFILES += $(GENUNIX) 83 84# 85# Non-patch genunix builds merge a version of the ip module called ipctf. This 86# is to ensure that the common network-related types are included in genunix and 87# can thus be uniquified out of other modules. We don't want to do this for 88# patch builds, since we can't guarantee that ip and genunix will be in the same 89# patch. 90# 91IPCTF_TARGET = $(IPCTF) 92$(PATCH_BUILD)IPCTF_TARGET = 93 94# 95# lint pass one enforcement 96# 97CFLAGS += $(CCVERBOSE) 98CPPFLAGS += -I$(SRC)/common 99CPPFLAGS += -I$(SRC)/uts/common/fs/zfs 100 101# 102# For now, disable these lint checks; maintainers should endeavor 103# to investigate and remove these for maximum lint coverage. 104# Please do not carry these forward to new Makefiles. 105# 106LINTTAGS += -erroff=E_SUSPICIOUS_COMPARISON 107LINTTAGS += -erroff=E_BAD_PTR_CAST_ALIGN 108LINTTAGS += -erroff=E_SUPPRESSION_DIRECTIVE_UNUSED 109LINTTAGS += -erroff=E_STATIC_UNUSED 110LINTTAGS += -erroff=E_PTRDIFF_OVERFLOW 111LINTTAGS += -erroff=E_ASSIGN_NARROW_CONV 112 113# 114# Default build targets. 115# 116.KEEP_STATE: 117 118.PARALLEL: $(LIBSTUBS) 119 120def: $(DEF_DEPS) 121 122all: $(ALL_DEPS) 123 124clean: $(CLEAN_DEPS) 125 126clobber: $(CLOBBER_DEPS) 127 128lint: $(LINT_DEPS) 129 130modlintlib: $(MODLINTLIB_DEPS) 131 132clean.lint: $(CLEAN_LINT_DEPS) 133 134install: $(INSTALL_DEPS) 135 136install_h: 137 138 139$(LIBGEN): $(GENUNIX) $(LIBSTUBS) 140 $(BUILD.SO) $(GENUNIX) $(LIBSTUBS) 141 142$(IPCTF_TARGET) ipctf_target: FRC 143 @cd $(IPDRV_DIR); pwd; $(MAKE) ipctf.$(OBJS_DIR) 144 @pwd 145 146$(GENUNIX): $(IPCTF_TARGET) $(OBJECTS) 147 $(LD) -r $(LDFLAGS) -o $@ $(OBJECTS) 148 $(CTFMERGE_GENUNIX_MERGE) 149 $(POST_PROCESS) 150 151$(OBJECTS): $(OBJS_DIR) 152 153# 154# Include common targets. 155# 156include $(UTSBASE)/sparc/Makefile.targ 157 158# 159# Include sun4u workarounds. 160# 161include $(UTSBASE)/sun4u/Makefile.workarounds 162 163ALL_DEFS += $(WORKAROUND_DEFS) 164