xref: /titanic_52/usr/src/uts/sparc/ipf/Makefile (revision 7663b81667fda05833f609eceac713f0a83c2347)
17c478bd9Sstevel@tonic-gate#
2*7663b816Sml37995# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
37c478bd9Sstevel@tonic-gate# Use is subject to license terms.
47c478bd9Sstevel@tonic-gate#
57c478bd9Sstevel@tonic-gate#ident	"%Z%%M%	%I%	%E% SMI"
67c478bd9Sstevel@tonic-gate#
77c478bd9Sstevel@tonic-gate# uts/sparc/ipf/Makefile
87c478bd9Sstevel@tonic-gate#
97c478bd9Sstevel@tonic-gate#
107c478bd9Sstevel@tonic-gate#	This makefile drives the production of the ipf driver
117c478bd9Sstevel@tonic-gate#	kernel module.
127c478bd9Sstevel@tonic-gate#
137c478bd9Sstevel@tonic-gate#	sparc architecture dependent
147c478bd9Sstevel@tonic-gate#
157c478bd9Sstevel@tonic-gate
167c478bd9Sstevel@tonic-gate#
177c478bd9Sstevel@tonic-gate#	Path to the base of the uts directory tree (usually /usr/src/uts).
187c478bd9Sstevel@tonic-gate#
197c478bd9Sstevel@tonic-gateUTSBASE	= ../..
207c478bd9Sstevel@tonic-gate
217c478bd9Sstevel@tonic-gate#
227c478bd9Sstevel@tonic-gate#	Define the module and object file sets.
237c478bd9Sstevel@tonic-gate#
247c478bd9Sstevel@tonic-gateMODULE		= ipf
257c478bd9Sstevel@tonic-gateOBJECTS		= $(IPF_OBJS:%=$(OBJS_DIR)/%)
267c478bd9Sstevel@tonic-gateLINTS		= $(IPF_OBJS:%.o=$(LINTS_DIR)/%.ln)
277c478bd9Sstevel@tonic-gateROOTMODULE	= $(USR_DRV_DIR)/$(MODULE)
287c478bd9Sstevel@tonic-gateCONF_SRCDIR	= $(UTSBASE)/common/inet/ipf
297c478bd9Sstevel@tonic-gate
307c478bd9Sstevel@tonic-gate#
317c478bd9Sstevel@tonic-gate#	Include common rules.
327c478bd9Sstevel@tonic-gate#
337c478bd9Sstevel@tonic-gateinclude $(UTSBASE)/sparc/Makefile.sparc
347c478bd9Sstevel@tonic-gate
357c478bd9Sstevel@tonic-gate#
367c478bd9Sstevel@tonic-gate#	Define targets
377c478bd9Sstevel@tonic-gate#
387c478bd9Sstevel@tonic-gateALL_TARGET	= $(BINARY) $(SRC_CONFFILE)
397c478bd9Sstevel@tonic-gateLINT_TARGET	= $(MODULE).lint
407c478bd9Sstevel@tonic-gateINSTALL_TARGET	= $(BINARY) $(ROOTMODULE) $(ROOT_CONFFILE)
417c478bd9Sstevel@tonic-gate
427c478bd9Sstevel@tonic-gate#
437c478bd9Sstevel@tonic-gate# lint pass one enforcement and OS version
447c478bd9Sstevel@tonic-gate#
457c478bd9Sstevel@tonic-gateMINOR=    echo $(RELEASE) | cut -d. -f2
467c478bd9Sstevel@tonic-gateCFLAGS += $(CCVERBOSE)
477c478bd9Sstevel@tonic-gateCPPFLAGS += -DIPFILTER_LKM -DIPFILTER_LOG -DIPFILTER_LOOKUP
48*7663b816Sml37995CPPFLAGS += -DSUNDDI -DSOLARIS2=$(MINOR:sh) -DIRE_ILL_CN -DUSE_INET6
497c478bd9Sstevel@tonic-gateLDFLAGS += -dy -Ndrv/ip -Ndrv/pfil -Nmisc/md5
507c478bd9Sstevel@tonic-gate
517c478bd9Sstevel@tonic-gate#
527c478bd9Sstevel@tonic-gate#	Default build targets.
537c478bd9Sstevel@tonic-gate#
547c478bd9Sstevel@tonic-gate.KEEP_STATE:
557c478bd9Sstevel@tonic-gate
567c478bd9Sstevel@tonic-gatedef:		$(DEF_DEPS)
577c478bd9Sstevel@tonic-gate
587c478bd9Sstevel@tonic-gateall:		$(ALL_DEPS)
597c478bd9Sstevel@tonic-gate
607c478bd9Sstevel@tonic-gateclean:		$(CLEAN_DEPS)
617c478bd9Sstevel@tonic-gate
627c478bd9Sstevel@tonic-gateclobber:	$(CLOBBER_DEPS)
637c478bd9Sstevel@tonic-gate
647c478bd9Sstevel@tonic-gatelint:		$(LINT_DEPS)
657c478bd9Sstevel@tonic-gate
667c478bd9Sstevel@tonic-gatemodlintlib:	$(MODLINTLIB_DEPS)
677c478bd9Sstevel@tonic-gate
687c478bd9Sstevel@tonic-gateclean.lint:	$(CLEAN_LINT_DEPS)
697c478bd9Sstevel@tonic-gate
707c478bd9Sstevel@tonic-gateinstall:	$(INSTALL_DEPS)
717c478bd9Sstevel@tonic-gate
727c478bd9Sstevel@tonic-gate#
737c478bd9Sstevel@tonic-gate#	Include common targets.
747c478bd9Sstevel@tonic-gate#
757c478bd9Sstevel@tonic-gateinclude $(UTSBASE)/sparc/Makefile.targ
76