Makefile revision 7c478bd95313f5f23a4c958a745db2134aa03244
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff#
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff# CDDL HEADER START
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff#
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff# The contents of this file are subject to the terms of the
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff# Common Development and Distribution License, Version 1.0 only
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff# (the "License"). You may not use this file except in compliance
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff# with the License.
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff#
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff# or http://www.opensolaris.org/os/licensing.
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff# See the License for the specific language governing permissions
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff# and limitations under the License.
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff#
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff# When distributing Covered Code, include this CDDL HEADER in each
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff# If applicable, add the following below this CDDL HEADER, with the
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff# fields enclosed by brackets "[]" replaced with your own identifying
ad3a5c4b7e21af04d1b872f933c2e19e5c0a135bMichael Graff# information: Portions Copyright [yyyy] [name of copyright owner]
ad3a5c4b7e21af04d1b872f933c2e19e5c0a135bMichael Graff#
ad3a5c4b7e21af04d1b872f933c2e19e5c0a135bMichael Graff# CDDL HEADER END
ad3a5c4b7e21af04d1b872f933c2e19e5c0a135bMichael Graff#
c803787146cadcb2d7e10cbf4491f3be513dfa1aMichael Graff#
ad3a5c4b7e21af04d1b872f933c2e19e5c0a135bMichael Graff# uts/intel/TS_DPTBL/Makefile
8cdfd17426179ae6f629a9b7475d46a22f535047Bob Halley#
ad3a5c4b7e21af04d1b872f933c2e19e5c0a135bMichael Graff# Copyright 2004 Sun Microsystems, Inc. All rights reserved.
ad3a5c4b7e21af04d1b872f933c2e19e5c0a135bMichael Graff# Use is subject to license terms.
ad3a5c4b7e21af04d1b872f933c2e19e5c0a135bMichael Graff#
294802790e8030f1c19b6c2c5d5204b6f464c729Michael Graff#pragma ident "%Z%%M% %I% %E% SMI"
294802790e8030f1c19b6c2c5d5204b6f464c729Michael Graff#
294802790e8030f1c19b6c2c5d5204b6f464c729Michael Graff# This makefile drives the production of the TS_DPTBL dispatch table
294802790e8030f1c19b6c2c5d5204b6f464c729Michael Graff# kernel module.
294802790e8030f1c19b6c2c5d5204b6f464c729Michael Graff#
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff# intel architecture dependent
66bd3b3c6b171271c705b897823dcdcf29464698Michael Graff#
64828244e04e86dfa40f0a4f0c05f27923da499dMichael Graff
64828244e04e86dfa40f0a4f0c05f27923da499dMichael Graff#
64828244e04e86dfa40f0a4f0c05f27923da499dMichael Graff# Path to the base of the uts directory tree (usually /usr/src/uts).
11fcc67616fac1bc6a28b3d4fed24641137888e7Michael Graff#
e51511aa3281f8dc384eb1283115c7f8d5c402aeMichael GraffUTSBASE = ../..
f181f94ec8da8b1dbcc6353e8be965ea4a5ea282Michael Graff
21e7034ec046105c00a0dab86c83732e2e77ad99Michael Graff#
31fab17bcdbe302592a6c0dc5374ef56333ee879Michael Graff# Define the module and object file sets.
213973a334f92d4aef4ef62b4538fc2e4d0e8082Michael Graff#
3024dbecbac365171bc6de0f3fa04951d6558be3Michael GraffMODULE = TS_DPTBL
f181f94ec8da8b1dbcc6353e8be965ea4a5ea282Michael GraffOBJECTS = $(TS_DPTBL_OBJS:%=$(OBJS_DIR)/%)
3ac63b472022ff92691d1fe69ac715a729671965Michael GraffLINTS = $(TS_DPTBL_OBJS:%.o=$(LINTS_DIR)/%.ln)
440be4c866f6935ac069db79a414304507a664c2Michael GraffROOTMODULE = $(ROOT_SCHED_DIR)/$(MODULE)
11fcc67616fac1bc6a28b3d4fed24641137888e7Michael Graff
fe14eafefa91fada7cea0a55b09196c01477406cBob Halley#
e45d323a2a0f4ca08d4b139546e60a5fa7bd3f0cMichael Graff# Include common rules.
29f28fe573d4b3b318b3b026d567c1eb86738015Michael Graff#
86944a4c8002e80ae9b6eb5a5e29b797879be45fMichael Graffinclude $(UTSBASE)/intel/Makefile.intel
11efdeb076d65fa9f0c5fc067dc040e7c99dfba6Michael Graff
21e7034ec046105c00a0dab86c83732e2e77ad99Michael Graff#
ad3a5c4b7e21af04d1b872f933c2e19e5c0a135bMichael Graff# Define targets
e51511aa3281f8dc384eb1283115c7f8d5c402aeMichael Graff#
e51511aa3281f8dc384eb1283115c7f8d5c402aeMichael GraffALL_TARGET = $(BINARY)
11efdeb076d65fa9f0c5fc067dc040e7c99dfba6Michael GraffLINT_TARGET = $(MODULE).lint
11efdeb076d65fa9f0c5fc067dc040e7c99dfba6Michael GraffINSTALL_TARGET = $(BINARY) $(ROOTMODULE)
439c0011e642fb1d26011116144af698125262dbMichael Graff
ad3a5c4b7e21af04d1b872f933c2e19e5c0a135bMichael Graff#
31fab17bcdbe302592a6c0dc5374ef56333ee879Michael Graff# Default build targets.
31fab17bcdbe302592a6c0dc5374ef56333ee879Michael Graff#
31fab17bcdbe302592a6c0dc5374ef56333ee879Michael Graff.KEEP_STATE:
31fab17bcdbe302592a6c0dc5374ef56333ee879Michael Graff
31fab17bcdbe302592a6c0dc5374ef56333ee879Michael Graffdef: $(DEF_DEPS)
31fab17bcdbe302592a6c0dc5374ef56333ee879Michael Graff
31fab17bcdbe302592a6c0dc5374ef56333ee879Michael Graffall: $(ALL_DEPS)
31fab17bcdbe302592a6c0dc5374ef56333ee879Michael Graff
31fab17bcdbe302592a6c0dc5374ef56333ee879Michael Graffclean: $(CLEAN_DEPS)
31fab17bcdbe302592a6c0dc5374ef56333ee879Michael Graff
ff9bb3fc5453bbf310b67c560fbf04a5c0fb60daMichael Graffclobber: $(CLOBBER_DEPS)
bb143613cf26e0f27dfd9caf1a7336065d064b26Michael Graff
fe14eafefa91fada7cea0a55b09196c01477406cBob Halleylint: $(LINT_DEPS)
fe14eafefa91fada7cea0a55b09196c01477406cBob Halley
11fcc67616fac1bc6a28b3d4fed24641137888e7Michael Graffmodlintlib: $(MODLINTLIB_DEPS)
ad3a5c4b7e21af04d1b872f933c2e19e5c0a135bMichael Graff
8cdfd17426179ae6f629a9b7475d46a22f535047Bob Halleyclean.lint: $(CLEAN_LINT_DEPS)
8cdfd17426179ae6f629a9b7475d46a22f535047Bob Halley
8cdfd17426179ae6f629a9b7475d46a22f535047Bob Halleyinstall: $(INSTALL_DEPS)
8cdfd17426179ae6f629a9b7475d46a22f535047Bob Halley
8cdfd17426179ae6f629a9b7475d46a22f535047Bob Halley#
ad3a5c4b7e21af04d1b872f933c2e19e5c0a135bMichael Graff# Include common targets.
3115cd89bc1e1fd3ecc4705d253e3484a3f5c555Michael Graff#
3115cd89bc1e1fd3ecc4705d253e3484a3f5c555Michael Graffinclude $(UTSBASE)/intel/Makefile.targ
3115cd89bc1e1fd3ecc4705d253e3484a3f5c555Michael Graff