Files
Arquivotheca.Solaris-2.5/uts/sun4d/cpu/Makefile
seta75D 7c4988eac0 Init
2021-10-11 19:38:01 -03:00

48 lines
788 B
Makefile
Executable File

#
# Copyright (c) 1991 by Sun Microsystems, Inc.
#
#ident "@(#)Makefile 1.6 93/05/26 SMI"
#
# This makefile drives the production of the cpu driver kernel module.
#
# sun4d implementation architecture dependent
#
#
# Path to the base of the uts directory tree (usually /usr/src/uts).
#
UTSBASE = ../..
#
# Define the module and object file sets.
#
MODULE = cpu
OBJECTS = $(CPUDRIVER_OBJS:%=$(OBJS_DIR)/%)
LINTS = $(CPUDRIVER_OBJS:%.o=$(LINTS_DIR)/%.ln)
ROOTMODULE = $(ROOT_PSM_DRV_DIR)/$(MODULE)
#
# Include common rules.
#
include $(UTSBASE)/sun4d/Makefile.sun4d
CLOBBERFILES += $(MODULE)
#
# Default build targets.
#
.KEEP_STATE:
all: $(MODULE)
lint: $(MODULE).lint
install: $(MODULE) $(ROOTMODULE)
#
# Include common targets.
#
include $(UTSBASE)/sun4d/Makefile.targ