Makefile revision 1495
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller#
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# Copyright (c) 2015, Oracle and/or its affiliates. All rights reserved.
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller#
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# Permission is hereby granted, free of charge, to any person obtaining a
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# copy of this software and associated documentation files (the "Software"),
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# to deal in the Software without restriction, including without limitation
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# the rights to use, copy, modify, merge, publish, distribute, sublicense,
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# and/or sell copies of the Software, and to permit persons to whom the
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# Software is furnished to do so, subject to the following conditions:
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller#
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# The above copyright notice and this permission notice (including the next
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# paragraph) shall be included in all copies or substantial portions of the
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# Software.
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller#
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# DEALINGS IN THE SOFTWARE.
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller#
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller###############################################################################
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller#
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller# This Makefile drives the building of mdb modules
a3f1c4bb696d904f842314da867a84288809db8bBrendan Mmiller#
a3f1c4bb696d904f842314da867a84288809db8bBrendan Mmiller###############################################################################
a3f1c4bb696d904f842314da867a84288809db8bBrendan Mmiller
a3f1c4bb696d904f842314da867a84288809db8bBrendan Mmiller.KEEP_STATE:
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller
a3f1c4bb696d904f842314da867a84288809db8bBrendan MmillerTOP:sh=hg root
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmillerinclude $(TOP)/open-src/common/Makefile.init
a3f1c4bb696d904f842314da867a84288809db8bBrendan Mmiller
a3f1c4bb696d904f842314da867a84288809db8bBrendan Mmillerall := TARGET = all
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmillerclean := TARGET = clean
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmillerclobber := TARGET = clobber
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmillerinstall := TARGET = install
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmillerlint := TARGET = lint
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller
448987059f6c769c5a4986c178356b90e823bb36Brendan MmillerSUBDIRS = modules
448987059f6c769c5a4986c178356b90e823bb36Brendan MmillerTARGET =
448987059f6c769c5a4986c178356b90e823bb36Brendan Mmiller
a3f1c4bb696d904f842314da867a84288809db8bBrendan Mmillerall clean clobber install lint: $(SUBDIRS)
a3f1c4bb696d904f842314da867a84288809db8bBrendan Mmiller
a3f1c4bb696d904f842314da867a84288809db8bBrendan Mmillerdownload source configure regen-patches git-update manifest:
a3f1c4bb696d904f842314da867a84288809db8bBrendan Mmiller
a3f1c4bb696d904f842314da867a84288809db8bBrendan Mmiller$(SUBDIRS): FRC
a3f1c4bb696d904f842314da867a84288809db8bBrendan Mmiller @cd $@; pwd; $(MAKE) $(MAKEFLAGS) $(TARGET)
a3f1c4bb696d904f842314da867a84288809db8bBrendan Mmiller
a3f1c4bb696d904f842314da867a84288809db8bBrendan MmillerFRC:
a3f1c4bb696d904f842314da867a84288809db8bBrendan Mmiller