xref: /illumos-gate/usr/src/uts/i86pc/Makefile.rules (revision fc1821fe)
17c478bd9Sstevel@tonic-gate#
27c478bd9Sstevel@tonic-gate# CDDL HEADER START
37c478bd9Sstevel@tonic-gate#
47c478bd9Sstevel@tonic-gate# The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate# Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate# (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate# with the License.
87c478bd9Sstevel@tonic-gate#
97c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate# and limitations under the License.
137c478bd9Sstevel@tonic-gate#
147c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate#
207c478bd9Sstevel@tonic-gate# CDDL HEADER END
217c478bd9Sstevel@tonic-gate#
227c478bd9Sstevel@tonic-gate#
237c478bd9Sstevel@tonic-gate# Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate# Use is subject to license terms.
257c478bd9Sstevel@tonic-gate#
267c478bd9Sstevel@tonic-gate#pragma ident	"%Z%%M%	%I%	%E% SMI"
277c478bd9Sstevel@tonic-gate#
287c478bd9Sstevel@tonic-gate
297c478bd9Sstevel@tonic-gate#	This Makefile defines the build rules for the directory uts/i86pc
307c478bd9Sstevel@tonic-gate#	and its children. These are the source files which are i86pc
317c478bd9Sstevel@tonic-gate#	"implementation architecture" dependent.
327c478bd9Sstevel@tonic-gate#
337c478bd9Sstevel@tonic-gate#	The following two-level ordering must be maintained in this file.
347c478bd9Sstevel@tonic-gate#	  Lines are sorted first in order of decreasing specificity based on
357c478bd9Sstevel@tonic-gate#	  the first directory component.  That is, sun4u rules come before
367c478bd9Sstevel@tonic-gate#	  sparc rules come before common rules.
377c478bd9Sstevel@tonic-gate#
387c478bd9Sstevel@tonic-gate#	  Lines whose initial directory components are equal are sorted
397c478bd9Sstevel@tonic-gate#	  alphabetically by the remaining components.
407c478bd9Sstevel@tonic-gate
417c478bd9Sstevel@tonic-gate#
427c478bd9Sstevel@tonic-gate#	Section 1a: C object build rules
437c478bd9Sstevel@tonic-gate#
447c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/conf/%.c
457c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
467c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
477c478bd9Sstevel@tonic-gate
487c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/%.c
497c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
507c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
517c478bd9Sstevel@tonic-gate
527c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/dktp/hba/chs/%.c
537c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
547c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
557c478bd9Sstevel@tonic-gate
567c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/dktp/hba/ncrs/%.c
577c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
587c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
597c478bd9Sstevel@tonic-gate
607c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/iprb/%.c
617c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
627c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
637c478bd9Sstevel@tonic-gate
647c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/bmc/%.c
657c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
667c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
677c478bd9Sstevel@tonic-gate
687c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/pci/%.c
697c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
707c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
717c478bd9Sstevel@tonic-gate
7270025d76Sjohnny$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/pciex/%.c
7370025d76Sjohnny	$(COMPILE.c) -o $@ $<
7470025d76Sjohnny	$(CTFCONVERT_O)
7570025d76Sjohnny
7670025d76Sjohnny$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/pciex/hotplug/pciehpc/%.c
7770025d76Sjohnny	$(COMPILE.c) -o $@ $<
7870025d76Sjohnny	$(CTFCONVERT_O)
7970025d76Sjohnny
807c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/pcplusmp/%.c
817c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
827c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
837c478bd9Sstevel@tonic-gate
847c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/pcplusmp/%.s
857c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $@ $<
867c478bd9Sstevel@tonic-gate
877c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/psm/%.c
887c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
897c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
907c478bd9Sstevel@tonic-gate
917c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/psm/%.s
927c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $@ $<
937c478bd9Sstevel@tonic-gate
947c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/rtls/%.c
957c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
967c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
977c478bd9Sstevel@tonic-gate
987c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/spwr/%.c
997c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1007c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1017c478bd9Sstevel@tonic-gate
1027c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/ml/%.s
1037c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $@ $<
1047c478bd9Sstevel@tonic-gate
1057c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/os/%.c
1067c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1077c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1087c478bd9Sstevel@tonic-gate
1097c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/vm/%.c
1107c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1117c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1127c478bd9Sstevel@tonic-gate
1137c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/common/io/%.c
1147c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1157c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1167c478bd9Sstevel@tonic-gate
1177c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/common/io/dktp/controller/ata/%.c
1187c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1197c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1207c478bd9Sstevel@tonic-gate
1217c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/common/io/dktp/hba/ghd/%.c
1227c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1237c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1247c478bd9Sstevel@tonic-gate
1257c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/common/io/elxl/%.c
1267c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1277c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1287c478bd9Sstevel@tonic-gate
1297c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/common/os/%.c
1307c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1317c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1327c478bd9Sstevel@tonic-gate
1337c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(SRC)/common/dis/i386/%.c
1347c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1357c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1367c478bd9Sstevel@tonic-gate
1377c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/agpgart/%.c
1387c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1397c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1407c478bd9Sstevel@tonic-gate
141*fc1821feSrugrat$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/gfx_private/%.c
142*fc1821feSrugrat	$(COMPILE.c) -o $@ $<
143*fc1821feSrugrat	$(CTFCONVERT_O)
144*fc1821feSrugrat
1457c478bd9Sstevel@tonic-gate# ridiculous contortions ---
1467c478bd9Sstevel@tonic-gateATOMIC_SUBDIR_32	= i386
1477c478bd9Sstevel@tonic-gateATOMIC_SUBDIR_64	= amd64
1487c478bd9Sstevel@tonic-gateATOMIC_SUBDIR		= $(ATOMIC_SUBDIR_$(CLASS))
1497c478bd9Sstevel@tonic-gate
1507c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(SRC)/common/atomic/$(ATOMIC_SUBDIR)/%.s
1517c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $@ $<
1527c478bd9Sstevel@tonic-gate
153fd358c0dSmyers$(OBJS_DIR)/%.o:		$(UTSBASE)/common/io/power/%.c
154fd358c0dSmyers	$(COMPILE.c) -o $@ $<
155fd358c0dSmyers	$(CTFCONVERT_O)
156fd358c0dSmyers
1577c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/acpica/%.c
1587c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1597c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1607c478bd9Sstevel@tonic-gate
1617c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/acpica/%.s
1627c478bd9Sstevel@tonic-gate	$(COMPILE.s) -o $@ $<
1637c478bd9Sstevel@tonic-gate
1647c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/acpica/debugger/%.c
1657c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1667c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1677c478bd9Sstevel@tonic-gate
1687c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/acpica/events/%.c
1697c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1707c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1717c478bd9Sstevel@tonic-gate
1727c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/acpica/hardware/%.c
1737c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1747c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1757c478bd9Sstevel@tonic-gate
1767c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/acpica/interpreter/dispatcher/%.c
1777c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1787c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1797c478bd9Sstevel@tonic-gate
1807c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/acpica/interpreter/executer/%.c
1817c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1827c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1837c478bd9Sstevel@tonic-gate
1847c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/acpica/interpreter/parser/%.c
1857c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1867c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1877c478bd9Sstevel@tonic-gate
1887c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/acpica/namespace/%.c
1897c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1907c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1917c478bd9Sstevel@tonic-gate
1927c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/acpica/resources/%.c
1937c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1947c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1957c478bd9Sstevel@tonic-gate
1967c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/acpica/tables/%.c
1977c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
1987c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
1997c478bd9Sstevel@tonic-gate
2007c478bd9Sstevel@tonic-gate$(OBJS_DIR)/%.o:		$(UTSBASE)/i86pc/io/acpica/utilities/%.c
2017c478bd9Sstevel@tonic-gate	$(COMPILE.c) -o $@ $<
2027c478bd9Sstevel@tonic-gate	$(CTFCONVERT_O)
2037c478bd9Sstevel@tonic-gate
2047c478bd9Sstevel@tonic-gate$(OBJS_DIR)/dtracestubs.s:	$(UNIX_O) $(LIBS)
2057c478bd9Sstevel@tonic-gate	nm -u $(UNIX_O) $(LIBS) | grep __dtrace_probe_ | sort | uniq | nawk '{ \
2067c478bd9Sstevel@tonic-gate	    printf("\t.globl %s\n\t.type %s,@function\n%s:\n", \
2077c478bd9Sstevel@tonic-gate	    $$1, $$1, $$1); }' > $(OBJS_DIR)/dtracestubs.s
2087c478bd9Sstevel@tonic-gate
2097c478bd9Sstevel@tonic-gate$(DTRACESTUBS):	$(DTRACESTUBS_O)
21002e56f3fSwesolows	$(BUILD.SO) $(DTRACESTUBS_O)
2117c478bd9Sstevel@tonic-gate
2127c478bd9Sstevel@tonic-gate#
2137c478bd9Sstevel@tonic-gate#	Section 1b: Lint `object' build rules
2147c478bd9Sstevel@tonic-gate#
2157c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/conf/%.c
2167c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2177c478bd9Sstevel@tonic-gate
2187c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/%.c
2197c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2207c478bd9Sstevel@tonic-gate
2217c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/dktp/hba/chs/%.c
2227c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2237c478bd9Sstevel@tonic-gate
2247c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/dktp/hba/ncrs/%.c
2257c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2267c478bd9Sstevel@tonic-gate
2277c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/iprb/%.c
2287c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2297c478bd9Sstevel@tonic-gate
2307c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/bmc/%.c
2317c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2327c478bd9Sstevel@tonic-gate
2337c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/pci/%.c
2347c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2357c478bd9Sstevel@tonic-gate
23670025d76Sjohnny$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/pciex/%.c
23770025d76Sjohnny	@($(LHEAD) $(LINT.c) $< $(LTAIL))
23870025d76Sjohnny
23970025d76Sjohnny$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/pciex/hotplug/pciehpc/%.c
24070025d76Sjohnny	@($(LHEAD) $(LINT.c) $< $(LTAIL))
24170025d76Sjohnny
2427c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/pcplusmp/%.c
2437c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2447c478bd9Sstevel@tonic-gate
2457c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/pcplusmp/%.s
2467c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.s) $< $(LTAIL))
2477c478bd9Sstevel@tonic-gate
2487c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/psm/%.c
2497c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2507c478bd9Sstevel@tonic-gate
2517c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/psm/%.s
2527c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.s) $< $(LTAIL))
2537c478bd9Sstevel@tonic-gate
2547c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/rtls/%.c
2557c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.s) $< $(LTAIL))
2567c478bd9Sstevel@tonic-gate
2577c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/spwr/%.c
2587c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2597c478bd9Sstevel@tonic-gate
2607c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/ml/%.s
2617c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.s) $< $(LTAIL))
2627c478bd9Sstevel@tonic-gate
2637c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/os/%.c
2647c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2657c478bd9Sstevel@tonic-gate
2667c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/vm/%.c
2677c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2687c478bd9Sstevel@tonic-gate
2697c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/common/io/%.c
2707c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2717c478bd9Sstevel@tonic-gate
2727c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/common/io/dktp/controller/ata/%.c
2737c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2747c478bd9Sstevel@tonic-gate
2757c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/common/io/dktp/hba/ghd/%.c
2767c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2777c478bd9Sstevel@tonic-gate
2787c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/common/io/elxl/%.c
2797c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2807c478bd9Sstevel@tonic-gate
2817c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/common/os/%.c
2827c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2837c478bd9Sstevel@tonic-gate
2847c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(SRC)/common/dis/i386/%.c
2857c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2867c478bd9Sstevel@tonic-gate
2877c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/agpgart/%.c
2887c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2897c478bd9Sstevel@tonic-gate
2907c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(SRC)/common/atomic/%.c
2917c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2927c478bd9Sstevel@tonic-gate
2937c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/acpica/%.s
2947c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.s) $< $(LTAIL))
2957c478bd9Sstevel@tonic-gate
2967c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/acpica/%.c
2977c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
2987c478bd9Sstevel@tonic-gate
2997c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/acpica/debugger/%.c
3007c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
3017c478bd9Sstevel@tonic-gate
3027c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/acpica/events/%.c
3037c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
3047c478bd9Sstevel@tonic-gate
3057c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/acpica/hardware/%.c
3067c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
3077c478bd9Sstevel@tonic-gate
3087c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/acpica/interpreter/dispatcher/%.c
3097c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
3107c478bd9Sstevel@tonic-gate
3117c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/acpica/interpreter/executer/%.c
3127c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
3137c478bd9Sstevel@tonic-gate
3147c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/acpica/interpreter/parser/%.c
3157c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
3167c478bd9Sstevel@tonic-gate
3177c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/acpica/namespace/%.c
3187c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
3197c478bd9Sstevel@tonic-gate
3207c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/acpica/resources/%.c
3217c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
3227c478bd9Sstevel@tonic-gate
3237c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/acpica/tables/%.c
3247c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
3257c478bd9Sstevel@tonic-gate
3267c478bd9Sstevel@tonic-gate$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/acpica/utilities/%.c
3277c478bd9Sstevel@tonic-gate	@($(LHEAD) $(LINT.c) $< $(LTAIL))
3287c478bd9Sstevel@tonic-gate
329*fc1821feSrugrat$(LINTS_DIR)/%.ln:		$(UTSBASE)/i86pc/io/gfx_private/%.c
330*fc1821feSrugrat	@($(LHEAD) $(LINT.c) $< $(LTAIL))
331*fc1821feSrugrat
332