Makefile revision 1450
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore# Permission is hereby granted, free of charge, to any person obtaining a
52671ce4f644d565b2acd71a8ce4f6d20829a67cAdam Moore# copy of this software and associated documentation files (the "Software"),
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore# to deal in the Software without restriction, including without limitation
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore# the rights to use, copy, modify, merge, publish, distribute, sublicense,
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore# and/or sell copies of the Software, and to permit persons to whom the
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore# Software is furnished to do so, subject to the following conditions:
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore# The above copyright notice and this permission notice (including the next
02fc09f797e83e80199c96adc4751c230dccc973Adam Moore# paragraph) shall be included in all copies or substantial portions of the
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
52671ce4f644d565b2acd71a8ce4f6d20829a67cAdam Moore# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
c4f19796d319a7ec9a1e76d48adc82c9c5ae2f27Adam Moore# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
08e054017132cdd838955bc0af15889f1f2a7b42Adam Moore# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
b46f3d670b654847b0ce60afdba1b461c492a5c9Adam Moore# DEALINGS IN THE SOFTWARE.
08e054017132cdd838955bc0af15889f1f2a7b42Adam Moore###############################################################################
0771d781138a507b3e657573703f511291640bf3Adam Moore# This Makefile actually builds the efb framebuffer driver
52671ce4f644d565b2acd71a8ce4f6d20829a67cAdam Moore###############################################################################
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore# Include kernel common rules
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore# Define targets
abdfe7cf11d34f89f17b26e4779bf6079d22a910Adam Moore# Lint errors that are not clean
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore# Default build targets.
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore# .DEFAULT: $(MODULE)
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore @print Installing $(MODULE) in $(PROTODIR)/$(PREFIX)
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore @$(INSTALL) -m 555 $(MODULE) $(PROTODIR)/$(PREFIX)
abdfe7cf11d34f89f17b26e4779bf6079d22a910Adam Moore @print Installing $(MANSOURCE)/$(MANPAGES) in $(PROTODIR)$(MANTARGET)
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore @mkdir -p $(PROTODIR)$(ROOT_MAN_DIR)/$(MANSECTION)
80d2034f65b9348e5fd36291f03b0819181efb89Adam Moore @$(INSTALL) -m 644 $(MANSOURCE)/$(MANPAGES) $(PROTODIR)$(MANTARGET)