48 lines
807 B
Makefile
Executable File
48 lines
807 B
Makefile
Executable File
#
|
|
# uts/sparc/lebuffer/Makefile
|
|
# Copyright (c) 1991 by Sun Microsystems, Inc.
|
|
#
|
|
#ident "@(#)Makefile 1.5 93/06/20 SMI"
|
|
#
|
|
# This makefile drives the production of the lebuffer driver
|
|
# kernel module.
|
|
#
|
|
# sparc architecture dependent
|
|
#
|
|
|
|
#
|
|
# Path to the base of the uts directory tree (usually /usr/src/uts).
|
|
#
|
|
UTSBASE = ../..
|
|
|
|
#
|
|
# Define the module and object file sets.
|
|
#
|
|
MODULE = lebuffer
|
|
OBJECTS = $(LEBUFFER_OBJS:%=$(OBJS_DIR)/%)
|
|
LINTS = $(LEBUFFER_OBJS:%.o=$(LINTS_DIR)/%.ln)
|
|
ROOTMODULE = $(ROOT_DRV_DIR)/$(MODULE)
|
|
|
|
#
|
|
# Include common rules.
|
|
#
|
|
include $(UTSBASE)/sparc/Makefile.sparc
|
|
|
|
CLOBBERFILES += $(MODULE)
|
|
|
|
#
|
|
# Default build targets.
|
|
#
|
|
.KEEP_STATE:
|
|
|
|
all: $(MODULE)
|
|
|
|
lint: $(MODULE).lint
|
|
|
|
install: $(MODULE) $(ROOTMODULE)
|
|
|
|
#
|
|
# Include common targets.
|
|
#
|
|
include $(UTSBASE)/sparc/Makefile.targ
|