xref: /titanic_51/usr/src/uts/intel/opteron_pcbe/Makefile (revision 3db3a4ac8d5c81055f03a962e4d709dc5e13e2df)
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
5bb25c06cSjg# Common Development and Distribution License (the "License").
6bb25c06cSjg# You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate#
87c478bd9Sstevel@tonic-gate# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate# or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate# See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate# and limitations under the License.
127c478bd9Sstevel@tonic-gate#
137c478bd9Sstevel@tonic-gate# When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate# If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate# fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate# information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate#
197c478bd9Sstevel@tonic-gate# CDDL HEADER END
207c478bd9Sstevel@tonic-gate#
217c478bd9Sstevel@tonic-gate#
22e850fb01SKuriakose Kuruvilla# Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
237c478bd9Sstevel@tonic-gate# Use is subject to license terms.
24*3db3a4acSRobert Mustacchi# Copyright 2019 Joyent, Inc.
257c478bd9Sstevel@tonic-gate#
267c478bd9Sstevel@tonic-gate#
277c478bd9Sstevel@tonic-gate# This Makefile builds the AMD Opteron/Athlon64 Performance Counter BackEnd.
287c478bd9Sstevel@tonic-gate#
297c478bd9Sstevel@tonic-gate
307c478bd9Sstevel@tonic-gateUTSBASE = ../..
317c478bd9Sstevel@tonic-gate
327c478bd9Sstevel@tonic-gate#
33*3db3a4acSRobert Mustacchi# The following objects are autogenerated by cpcgen.
34*3db3a4acSRobert Mustacchi#
35*3db3a4acSRobert MustacchiCPCGEN_OBJS	= \
36*3db3a4acSRobert Mustacchi	opteron_pcbe_f17h.o
37*3db3a4acSRobert Mustacchi
38*3db3a4acSRobert MustacchiCPCGEN_COMMON	= opteron_pcbe_cpcgen.h
39*3db3a4acSRobert MustacchiCPCGEN_CMD	= $(CPCGEN) -d $(SRC)/data/amdpmc -o .
40*3db3a4acSRobert MustacchiCPCGEN_SRCS	= $(CPCGEN_OBJS:%.o=%.c) opteron_pcbe_cpcgen.h
41*3db3a4acSRobert Mustacchi
42*3db3a4acSRobert Mustacchi
43*3db3a4acSRobert Mustacchi#
447c478bd9Sstevel@tonic-gate#	Define module and object file sets.
457c478bd9Sstevel@tonic-gate#
46e850fb01SKuriakose KuruvillaMODULE		= pcbe.AuthenticAMD
477c478bd9Sstevel@tonic-gateOBJECTS		= $(OPTERON_PCBE_OBJS:%=$(OBJS_DIR)/%)
48*3db3a4acSRobert MustacchiOBJECTS		+= $(CPCGEN_OBJS:%=$(OBJS_DIR)/%)
497c478bd9Sstevel@tonic-gateLINTS		= $(OPTERON_PCBE_OBJS:%.o=$(LINTS_DIR)/%.ln)
507c478bd9Sstevel@tonic-gateROOTMODULE	= $(USR_PCBE_DIR)/$(MODULE)
517c478bd9Sstevel@tonic-gate
527c478bd9Sstevel@tonic-gate#
537c478bd9Sstevel@tonic-gate#	Include common rules.
547c478bd9Sstevel@tonic-gate#
557c478bd9Sstevel@tonic-gateinclude $(UTSBASE)/intel/Makefile.intel
567c478bd9Sstevel@tonic-gate
57*3db3a4acSRobert MustacchiCPPFLAGS	+= -I$(UTSBASE)/intel/opteron_pcbe
58*3db3a4acSRobert MustacchiCLEANFILES	+= $(CPCGEN_SRCS)
59*3db3a4acSRobert Mustacchi
607c478bd9Sstevel@tonic-gate#
617c478bd9Sstevel@tonic-gate#	Define targets.
627c478bd9Sstevel@tonic-gate#
63*3db3a4acSRobert MustacchiALL_TARGET	= $(CPCGEN_COMMON) .WAIT $(BINARY)
647c478bd9Sstevel@tonic-gateLINT_MODULE	= opteron_pcbe
657c478bd9Sstevel@tonic-gateLINT_TARGET	= $(LINT_MODULE).lint
66*3db3a4acSRobert MustacchiINSTALL_TARGET	= $(CPCGEN_COMMON) .WAIT $(BINARY) $(ROOTMODULE)
677c478bd9Sstevel@tonic-gate
68bb25c06cSjg#
69bb25c06cSjg# For now, disable these lint checks; maintainers should endeavor
70bb25c06cSjg# to investigate and remove these for maximum lint coverage.
71bb25c06cSjg# Please do not carry these forward to new Makefiles.
72bb25c06cSjg#
73bb25c06cSjgLINTTAGS	+= -erroff=E_ASSIGN_NARROW_CONV
74bb25c06cSjg
757c478bd9Sstevel@tonic-gate
767c478bd9Sstevel@tonic-gate#
777c478bd9Sstevel@tonic-gate#	Default build targets.
787c478bd9Sstevel@tonic-gate#
797c478bd9Sstevel@tonic-gate.KEEP_STATE:
807c478bd9Sstevel@tonic-gate
817c478bd9Sstevel@tonic-gatedef:		$(DEF_DEPS)
827c478bd9Sstevel@tonic-gate
837c478bd9Sstevel@tonic-gateall:		$(ALL_DEPS)
847c478bd9Sstevel@tonic-gate
857c478bd9Sstevel@tonic-gateclean:		$(CLEAN_DEPS)
867c478bd9Sstevel@tonic-gate
877c478bd9Sstevel@tonic-gateclobber:	$(CLOBBER_DEPS)
887c478bd9Sstevel@tonic-gate
897c478bd9Sstevel@tonic-gatelint:		$(LINT_DEPS)
907c478bd9Sstevel@tonic-gate
917c478bd9Sstevel@tonic-gatemodlintlib:	$(MODLINTLIB_DEPS)
927c478bd9Sstevel@tonic-gate
937c478bd9Sstevel@tonic-gateclean.lint:	$(CLEAN_LINT_DEPS)
947c478bd9Sstevel@tonic-gate
957c478bd9Sstevel@tonic-gateinstall:	$(INSTALL_DEPS)
967c478bd9Sstevel@tonic-gate
97*3db3a4acSRobert Mustacchiopteron_pcbe_cpcgen.h:
98*3db3a4acSRobert Mustacchi	$(CPCGEN_CMD) -a -H
99*3db3a4acSRobert Mustacchi
100*3db3a4acSRobert Mustacchiopteron_pcbe_%.c: $(CPCGEN_COMMON)
101*3db3a4acSRobert Mustacchi	$(CPCGEN_CMD) -c -p \
102*3db3a4acSRobert Mustacchi	    $$(echo $@ | \
103*3db3a4acSRobert Mustacchi	    $(SED) -e 's/opteron_pcbe_//g' -e 's/_/-/g' -e 's/.c$$//g')
104*3db3a4acSRobert Mustacchi
105*3db3a4acSRobert Mustacchi$(OBJS_DIR)/%.o: %.c
106*3db3a4acSRobert Mustacchi	$(COMPILE.c) -I$(SRC)/uts/intel/pcbe/ -o $@ $<
107*3db3a4acSRobert Mustacchi	$(CTFCONVERT_O)
108*3db3a4acSRobert Mustacchi
1097c478bd9Sstevel@tonic-gate#
1107c478bd9Sstevel@tonic-gate#	Include common targets.
1117c478bd9Sstevel@tonic-gate#
1127c478bd9Sstevel@tonic-gateinclude $(UTSBASE)/intel/Makefile.targ
113