xref: /illumos-gate/usr/src/psm/stand/lib/promif/sparcv9/ieee1275/sun4v/Makefile (revision f998c95e3b7029fe5f7542e115f7474ddb8024d7)
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#
22# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
23# Use is subject to license terms.
24#
25# psm/stand/boot/sparcv9/ieee1275/sun4v/Makefile
26#
27#
28#ident	"%Z%%M%	%I%	%E% SMI"
29#
30TOPDIR =	../../../../../../..
31
32include $(TOPDIR)/Makefile.master
33include $(TOPDIR)/lib/Makefile.lib
34include $(TOPDIR)/psm/stand/lib/Makefile.lib
35include $(TOPDIR)/psm/Makefile.psm.64
36
37CFLAGS64	+= -xchip=ultra $(CCABS32)
38
39PLATDIR =	$(TOPDIR)/psm/promif/ieee1275/sun4u
40PLATSUN4DIR =	$(TOPDIR)/psm/promif/ieee1275/sun4
41SYSDIR =	$(TOPDIR)/uts
42
43LIBPLAT =	libplat.a
44LINTLIBPLAT =	llib-lplat.ln
45
46PLAT_PFILES = 			\
47	prom_heartbeat.c	\
48	prom_mmu.c		\
49	prom_vercheck.c
50
51PLAT_PSUN4FILES =		\
52	prom_alloc.c		\
53	prom_cpuctl.c		\
54	prom_getunum.c		\
55	prom_idprom.c		\
56	prom_init.c		\
57	prom_macaddr.c		\
58	prom_map.c		\
59	prom_mem.c		\
60	prom_retain.c		\
61	prom_sparc.c		\
62	prom_vername.c
63
64KARCH =		sun4v
65MMU =		sfmmu
66
67OBJSDIR =	objs
68
69PLAT_POBJ =	$(PLAT_PFILES:%.c=$(OBJSDIR)/%.o)
70PLAT_PSUN4OBJ =	$(PLAT_PSUN4FILES:%.c=$(OBJSDIR)/%.o)
71OBJS =		$(PLAT_POBJ) $(PLAT_PSUN4OBJ)
72L_OBJS =	$(OBJS:%.o=%.ln)
73L_SRCS = 	$(PLAT_PFILES:%=$(PLATDIR)/%)
74L_SRCS += 	$(PLAT_PSUN4FILES:%=$(PLATSUN4DIR)/%)
75
76ARCHOPTS=	-Dsun4v
77ASFLAGS =	-P -D__STDC__ -D_BOOT -D_ASM
78CPPDEFS	=	$(ARCHOPTS) -D$(KARCH) -D_BOOT -D_KERNEL -D_MACHDEP
79CPPINCS =	-I. -I$(SYSDIR)/sun4 -I$(SYSDIR)/$(KARCH) -I$(SYSDIR)/$(MMU) \
80		-I$(SYSDIR)/sun4u \
81		-I$(SYSDIR)/sparc/v9 -I$(SYSDIR)/sparc \
82		-I$(SYSDIR)/sun -I$(SYSDIR)/common
83CPPFLAGS=	$(CPPDEFS) $(CPPINCS) $(CPPFLAGS.master)
84CFLAGS +=	$(CCVERBOSE)
85
86.KEEP_STATE:
87
88.PARALLEL:	$(OBJS) $(L_OBJS)
89
90all install: $(LIBPLAT)
91
92lint: $(LINTLIBPLAT)
93
94clean:
95	$(RM) $(OBJS) $(L_OBJS)
96
97clobber: clean
98	$(RM) $(LIBPLAT) $(LINTLIBPLAT) a.out core
99
100$(LIBPLAT): $(OBJSDIR) .WAIT $(OBJS)
101	$(BUILD.AR) $(OBJS)
102
103$(LINTLIBPLAT): $(OBJSDIR) .WAIT $(L_OBJS)
104	@$(ECHO) "\nlint library construction:" $@
105	@$(LINT.lib) -o plat $(L_SRCS)
106
107$(OBJSDIR):
108	-@[ -d $@ ] || mkdir $@
109
110#
111# build rules using standard library object subdirectory
112#
113$(OBJSDIR)/%.o: $(PLATDIR)/%.c
114	$(COMPILE.c) -o $@ $<
115	$(POST_PROCESS_O)
116
117$(OBJSDIR)/%.o: $(PLATDIR)/%.s
118	$(COMPILE.s) -o $@ $<
119	$(POST_PROCESS_O)
120
121$(OBJSDIR)/%.o: $(PLATSUN4DIR)/%.c
122	$(COMPILE.c) -o $@ $<
123	$(POST_PROCESS_O)
124
125$(OBJSDIR)/%.o: $(PLATSUN4DIR)/%.s
126	$(COMPILE.s) -o $@ $<
127	$(POST_PROCESS_O)
128
129$(OBJSDIR)/%.ln: $(PLATDIR)/%.c
130	@($(LHEAD) $(LINT.c) $< $(LTAIL))
131	@$(MV) $(@F) $@
132
133$(OBJSDIR)/%.ln: $(PLATDIR)/%.s
134	@($(LHEAD) $(LINT.s) $< $(LTAIL))
135	@$(MV) $(@F) $@
136
137$(OBJSDIR)/%.ln: $(PLATSUN4DIR)/%.c
138	@($(LHEAD) $(LINT.c) $< $(LTAIL))
139	@$(MV) $(@F) $@
140
141$(OBJSDIR)/%.ln: $(PLATSUN4DIR)/%.s
142	@($(LHEAD) $(LINT.s) $< $(LTAIL))
143	@$(MV) $(@F) $@
144