#
# Description:
#
#  This Makefile is a generic sub-directory Makefile. It includes the
#  specific rules for this sub-directory and sets up a default rule.
#
#  Here are the targets:
#
#    make           # Build the sub-directory
#    make <file>    # Re-build the named file (bin/prog, etc)
#

# Always first. Relative path to TOP.
TOP := ../..

# The default rule
.PHONY: default
default: build

# Settings
include $(TOP)/mk/settings.mk.inc

# This directory's setup
include Makefile.inc

# Rules
include $(TOP)/mk/rules.mk.inc
