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, Version 1.0 only 6# (the "License"). You may not use this file except in compliance 7# with the License. 8# 9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10# or http://www.opensolaris.org/os/licensing. 11# See the License for the specific language governing permissions 12# and limitations under the License. 13# 14# When distributing Covered Code, include this CDDL HEADER in each 15# file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16# If applicable, add the following below this CDDL HEADER, with the 17# fields enclosed by brackets "[]" replaced with your own identifying 18# information: Portions Copyright [yyyy] [name of copyright owner] 19# 20# CDDL HEADER END 21# 22# 23# Copyright 2003 Sun Microsystems, Inc. All rights reserved. 24# Use is subject to license terms. 25# 26# ident "%Z%%M% %I% %E% SMI" 27# 28# uts/sun/Makefile.rules 29# 30# This Makefile defines all build rules for the directory uts/sun and 31# its children. These are the source files which are common to all sun 32# implementations. 33# 34# The following two-level ordering must be maintained in this file. 35# Lines are sorted first in order of decreasing specificity based on 36# the first directory component. That is, sun4u rules come before 37# sparc rules come before common rules. 38# 39# Lines whose initial directory components are equal are sorted 40# alphabetically by the remaining components. 41 42# 43# Section 1a: C object build rules 44# 45$(OBJS_DIR)/%.o: $(UTSBASE)/sun/io/audio/legacy/dbri/%.c 46 $(COMPILE.c) -o $@ $< 47 $(CTFCONVERT_O) 48 49$(OBJS_DIR)/%.o: $(UTSBASE)/sun/io/audio/sada/drv/audiocs/%.c 50 $(COMPILE.c) -o $@ $< 51 $(CTFCONVERT_O) 52 53$(OBJS_DIR)/eri.o := CFLAGS += -dalign 54$(OBJS_DIR)/hme.o := CFLAGS += -dalign 55$(OBJS_DIR)/%.o: $(UTSBASE)/sun/io/%.c 56 $(COMPILE.c) -o $@ $< 57 $(CTFCONVERT_O) 58 59$(OBJS_DIR)/%.o: $(UTSBASE)/sun/io/ttymux/%.c 60 $(COMPILE.c) -o $@ $< 61 $(CTFCONVERT_O) 62 63$(OBJS_DIR)/%.o: $(UTSBASE)/sun/io/dada/adapters/%.c 64 $(COMPILE.c) -o $@ $< 65 $(CTFCONVERT_O) 66 67$(OBJS_DIR)/%.o: $(UTSBASE)/sun/io/dada/adapters/ghd/%.c 68 $(COMPILE.c) -o $@ $< 69 $(CTFCONVERT_O) 70 71$(OBJS_DIR)/%.o: $(UTSBASE)/sun/io/dada/conf/%.c 72 $(COMPILE.c) -o $@ $< 73 $(CTFCONVERT_O) 74 75$(OBJS_DIR)/%.o: $(UTSBASE)/sun/io/dada/impl/%.c 76 $(COMPILE.c) -o $@ $< 77 $(CTFCONVERT_O) 78 79$(OBJS_DIR)/%.o: $(UTSBASE)/sun/io/dada/targets/%.c 80 $(COMPILE.c) -o $@ $< 81 $(CTFCONVERT_O) 82 83$(OBJS_DIR)/esp.o := CFLAGS += -dalign 84$(OBJS_DIR)/fas.o := CFLAGS += -dalign 85$(OBJS_DIR)/fas_callbacks.o := CFLAGS += -dalign 86$(OBJS_DIR)/ifp.o := CFLAGS += -dalign 87$(OBJS_DIR)/isp.o := CFLAGS += -dalign 88$(OBJS_DIR)/sf.o := CFLAGS += -dalign 89$(OBJS_DIR)/%.o: $(UTSBASE)/sun/io/scsi/adapters/%.c 90 $(COMPILE.c) -o $@ $< 91 $(CTFCONVERT_O) 92 93$(OBJS_DIR)/%.o: $(UTSBASE)/sun/io/scsi/targets/%.c 94 $(COMPILE.c) -I. -o $@ $< 95 $(CTFCONVERT_O) 96 97$(OBJS_DIR)/%.o: $(UTSBASE)/common/io/scsi/adapters/%.c 98 $(COMPILE.c) -o $@ $< 99 $(CTFCONVERT_O) 100 101# 102# Section 1b: Lint `object' build rules 103# 104$(LINTS_DIR)/%.ln: $(UTSBASE)/sun/io/%.c 105 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 106 107$(LINTS_DIR)/%.ln: $(UTSBASE)/sun/io/audio/legacy/dbri/%.c 108 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 109 110$(LINTS_DIR)/%.ln: $(UTSBASE)/sun/io/audio/sada/drv/audiocs/%.c 111 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 112 113$(LINTS_DIR)/%.ln: $(UTSBASE)/sun/io/scsi/adapters/%.c 114 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 115 116$(LINTS_DIR)/%.ln: $(UTSBASE)/sun/io/scsi/targets/%.c 117 @($(LHEAD) $(LINT.c) -I. $< $(LTAIL)) 118 119$(LINTS_DIR)/%.ln: $(UTSBASE)/sun/io/dada/targets/%.c 120 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 121 122$(LINTS_DIR)/%.ln: $(UTSBASE)/sun/io/dada/adapters/%.c 123 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 124 125$(LINTS_DIR)/%.ln: $(UTSBASE)/sun/io/dada/adapters/ghd/%.c 126 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 127 128$(LINTS_DIR)/%.ln: $(UTSBASE)/sun/io/dada/impl/%.c 129 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 130 131$(LINTS_DIR)/%.ln: $(UTSBASE)/sun/io/dada/conf/%.c 132 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 133 134$(LINTS_DIR)/%.ln: $(UTSBASE)/common/io/scsi/adapters/%.c 135 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 136 137$(LINTS_DIR)/%.ln: $(UTSBASE)/sun/io/ttymux/%.c 138 @($(LHEAD) $(LINT.c) $< $(LTAIL)) 139