# Example Child Project Makefile
#
# usage: make [BUILDTYPE=[prod|dev]]
#
# This makefile illustrates an example build-web project
# that is designed to be included in other projects as a
# child project
#

# Variables
#======================================================================
# rules.mak contains the default rules for a Makefile.
#
# note that these varible values can be over ridden either on the 
# command line of the make via make VARNAME=value or via the 
# Environment.
include ../bin/rules.mak

# Source Web Directory
SRCEWEBDIR         = /child-project-srce

#
# rules
#======================================================================

all: main 

clean: clean-main 

