Makefile (bb25c06c) Makefile (f4b3ec61)
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

--- 6 unchanged lines hidden (view full) ---

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# uts/intel/keysock/Makefile
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

--- 6 unchanged lines hidden (view full) ---

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# uts/intel/keysock/Makefile
23# Copyright 2006 Sun Microsystems, Inc. All rights reserved.
23# Copyright 2007 Sun Microsystems, Inc. All rights reserved.
24# Use is subject to license terms.
25#
26#ident "%Z%%M% %I% %E% SMI"
27#
28# This makefile drives the production of the keysock driver
29# kernel module.
30#
31# intel implementation architecture dependent

--- 60 unchanged lines hidden (view full) ---

92
93clean.lint: $(CLEAN_LINT_DEPS)
94
95install: $(INSTALL_DEPS)
96
97$(ROOTLINK): $(ROOT_STRMOD_DIR) $(ROOTMODULE)
98 -$(RM) $@; ln $(ROOTMODULE) $@
99
24# Use is subject to license terms.
25#
26#ident "%Z%%M% %I% %E% SMI"
27#
28# This makefile drives the production of the keysock driver
29# kernel module.
30#
31# intel implementation architecture dependent

--- 60 unchanged lines hidden (view full) ---

92
93clean.lint: $(CLEAN_LINT_DEPS)
94
95install: $(INSTALL_DEPS)
96
97$(ROOTLINK): $(ROOT_STRMOD_DIR) $(ROOTMODULE)
98 -$(RM) $@; ln $(ROOTMODULE) $@
99
100sis_check: sis_check.obj
101sis_check.obj: $(ALL_DEPS)
102 @$(GREP) -v '#' $(MODULE).objt-symbols.obj64 |$(GREP) . |$(SORT) -u \
103 > $(MODULE).symbols.tmp
104 @$(NM) obj64/$(MODULE) |$(GREP) OBJT |$(GREP) -v UNDEF | \
105 $(CUT) -d'|' -f8 |$(SORT) -u > $(MODULE).symbols.tmp.new
106 -@$(DIFF) $(MODULE).symbols.tmp $(MODULE).symbols.tmp.new
107
100#
101# Include common targets.
102#
103include $(UTSBASE)/intel/Makefile.targ
108#
109# Include common targets.
110#
111include $(UTSBASE)/intel/Makefile.targ