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