xref: /titanic_41/usr/src/uts/intel/ipf/Makefile (revision bb25c06cca41ca78e5fb87fbb8e81d55beb18c95)
17c478bd9Sstevel@tonic-gate#
2381a2a9aSdr146992# CDDL HEADER START
3381a2a9aSdr146992#
4381a2a9aSdr146992# The contents of this file are subject to the terms of the
5381a2a9aSdr146992# Common Development and Distribution License (the "License").
6381a2a9aSdr146992# You may not use this file except in compliance with the License.
7381a2a9aSdr146992#
8381a2a9aSdr146992# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9381a2a9aSdr146992# or http://www.opensolaris.org/os/licensing.
10381a2a9aSdr146992# See the License for the specific language governing permissions
11381a2a9aSdr146992# and limitations under the License.
12381a2a9aSdr146992#
13381a2a9aSdr146992# When distributing Covered Code, include this CDDL HEADER in each
14381a2a9aSdr146992# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15381a2a9aSdr146992# If applicable, add the following below this CDDL HEADER, with the
16381a2a9aSdr146992# fields enclosed by brackets "[]" replaced with your own identifying
17381a2a9aSdr146992# information: Portions Copyright [yyyy] [name of copyright owner]
18381a2a9aSdr146992#
19381a2a9aSdr146992# CDDL HEADER END
20381a2a9aSdr146992#
21381a2a9aSdr146992#
22ab25eeb5Syz155240# Copyright 2006 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate# Use is subject to license terms.
247c478bd9Sstevel@tonic-gate#
257c478bd9Sstevel@tonic-gate#ident	"%Z%%M%	%I%	%E% SMI"
267c478bd9Sstevel@tonic-gate#
277c478bd9Sstevel@tonic-gate# uts/intel/ipf/Makefile
287c478bd9Sstevel@tonic-gate#
297c478bd9Sstevel@tonic-gate#	This makefile drives the production of the ipf driver
307c478bd9Sstevel@tonic-gate#	kernel module.
317c478bd9Sstevel@tonic-gate#
327c478bd9Sstevel@tonic-gate#	intel architecture dependent
337c478bd9Sstevel@tonic-gate#
347c478bd9Sstevel@tonic-gate
357c478bd9Sstevel@tonic-gate#
367c478bd9Sstevel@tonic-gate#	Path to the base of the uts directory tree (usually /usr/src/uts).
377c478bd9Sstevel@tonic-gate#
387c478bd9Sstevel@tonic-gateUTSBASE	= ../..
397c478bd9Sstevel@tonic-gate
407c478bd9Sstevel@tonic-gate#
417c478bd9Sstevel@tonic-gate#	Define the module and object file sets.
427c478bd9Sstevel@tonic-gate#
437c478bd9Sstevel@tonic-gateMODULE		= ipf
447c478bd9Sstevel@tonic-gateOBJECTS		= $(IPF_OBJS:%=$(OBJS_DIR)/%)
457c478bd9Sstevel@tonic-gateLINTS		= $(IPF_OBJS:%.o=$(LINTS_DIR)/%.ln)
467c478bd9Sstevel@tonic-gateROOTMODULE	= $(USR_DRV_DIR)/$(MODULE)
477c478bd9Sstevel@tonic-gateCONF_SRCDIR	= $(UTSBASE)/common/inet/ipf
487c478bd9Sstevel@tonic-gate
497c478bd9Sstevel@tonic-gate#
507c478bd9Sstevel@tonic-gate#	Include common rules.
517c478bd9Sstevel@tonic-gate#
527c478bd9Sstevel@tonic-gateinclude $(UTSBASE)/intel/Makefile.intel
537c478bd9Sstevel@tonic-gate
547c478bd9Sstevel@tonic-gate#
557c478bd9Sstevel@tonic-gate#	Define targets
567c478bd9Sstevel@tonic-gate#
577c478bd9Sstevel@tonic-gateALL_TARGET	= $(BINARY) $(SRC_CONFFILE)
587c478bd9Sstevel@tonic-gateLINT_TARGET	= $(MODULE).lint
597c478bd9Sstevel@tonic-gateINSTALL_TARGET	= $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
607c478bd9Sstevel@tonic-gate
617c478bd9Sstevel@tonic-gateMINOR=	    echo $(RELEASE) | cut -d. -f2
627663b816Sml37995CPPFLAGS += -DIPFILTER_LKM -DIPFILTER_LOG -DIPFILTER_LOOKUP -DUSE_INET6
637c478bd9Sstevel@tonic-gateCPPFLAGS += -DSUNDDI -DSOLARIS2=$(MINOR:sh) -DIRE_ILL_CN
64381a2a9aSdr146992LDFLAGS += -dy -Ndrv/ip -Nmisc/md5 -Nmisc/neti
657c478bd9Sstevel@tonic-gate
66ab25eeb5Syz155240INC_PATH += -I$(UTSBASE)/common/inet/ipf
67ab25eeb5Syz155240
687c478bd9Sstevel@tonic-gate#
69*bb25c06cSjg# For now, disable these lint checks; maintainers should endeavor
70*bb25c06cSjg# to investigate and remove these for maximum lint coverage.
71*bb25c06cSjg# Please do not carry these forward to new Makefiles.
72*bb25c06cSjg#
73*bb25c06cSjgLINTTAGS	+= -erroff=E_STATIC_UNUSED
74*bb25c06cSjgLINTTAGS	+= -erroff=E_BAD_PTR_CAST_ALIGN
75*bb25c06cSjgLINTTAGS	+= -erroff=E_PTRDIFF_OVERFLOW
76*bb25c06cSjgLINTTAGS	+= -erroff=E_ASSIGN_NARROW_CONV
77*bb25c06cSjg
78*bb25c06cSjg#
797c478bd9Sstevel@tonic-gate#	Default build targets.
807c478bd9Sstevel@tonic-gate#
817c478bd9Sstevel@tonic-gate.KEEP_STATE:
827c478bd9Sstevel@tonic-gate
837c478bd9Sstevel@tonic-gatedef:		$(DEF_DEPS)
847c478bd9Sstevel@tonic-gate
857c478bd9Sstevel@tonic-gateall:		$(ALL_DEPS)
867c478bd9Sstevel@tonic-gate
877c478bd9Sstevel@tonic-gateclean:		$(CLEAN_DEPS)
887c478bd9Sstevel@tonic-gate
897c478bd9Sstevel@tonic-gateclobber:	$(CLOBBER_DEPS)
907c478bd9Sstevel@tonic-gate
917c478bd9Sstevel@tonic-gatelint:		$(LINT_DEPS)
927c478bd9Sstevel@tonic-gate
937c478bd9Sstevel@tonic-gatemodlintlib:	$(MODLINTLIB_DEPS)
947c478bd9Sstevel@tonic-gate
957c478bd9Sstevel@tonic-gateclean.lint:	$(CLEAN_LINT_DEPS)
967c478bd9Sstevel@tonic-gate
977c478bd9Sstevel@tonic-gateinstall:	$(INSTALL_DEPS)
987c478bd9Sstevel@tonic-gate
997c478bd9Sstevel@tonic-gate#
1007c478bd9Sstevel@tonic-gate#	Include common targets.
1017c478bd9Sstevel@tonic-gate#
1027c478bd9Sstevel@tonic-gateinclude $(UTSBASE)/intel/Makefile.targ
103