xref: /illumos-gate/usr/src/psm/stand/boot/Makefile.rules (revision a89c0811c892ec231725fe10817ef95dda813c06)
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
9# or http://www.opensolaris.org/os/licensing.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
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# Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
22# Use is subject to license terms.
23#
24# psm/stand/boot/Makefile.rules
25
26#CPPFLAGS += -DDEBUG=1
27
28#
29# Pattern matching rules to compile the source in the current directory
30#
31%.o: $(TOP_CMN_DIR)/util/%.c
32	$(COMPILE.c) -o $@ $<
33	$(POST_PROCESS_O)
34
35%.o: $(TOP_CMN_DIR)/fs/%.c
36	$(COMPILE.c) -o $@ $<
37	$(POST_PROCESS_O)
38
39%.o: $(PROM_DIR)/%.c
40	$(COMPILE.c) -o $@ $<
41	$(POST_PROCESS_O)
42
43%.o: $(CMN_DIR)/%.c
44	$(COMPILE.c) -o $@ $<
45	$(POST_PROCESS_O)
46
47%.o: $(PIM_DIR)/%.c
48	$(COMPILE.c) -o $@ $<
49	$(POST_PROCESS_O)
50
51%.o: $(MACH_DIR)/%.s
52	$(COMPILE.s) -o $@ $<
53	$(POST_PROCESS_O)
54
55%.o: $(MACH_DIR)/%.c
56	$(COMPILE.c) -o $@ $<
57	$(POST_PROCESS_O)
58
59%.o: %.s
60	$(COMPILE.s) -o $@ $<
61	$(POST_PROCESS_O)
62
63%.o: $(PLAT_DIR)/%.c
64	$(COMPILE.c) -o $@ $<
65	$(POST_PROCESS_O)
66
67#
68# Rules to compile libraries needed to build the boot loaders.
69#
70$(LIBPROM_DIR)/libprom.a $(LIBPLAT_DEP) $(LIBNAME_DIR)/libnames.a: FRC
71	@cd $(@D); pwd; $(MAKE) $(@F)
72
73FRC:
74