########################################################################
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
# Module name   : makefile.pl
# Module type   : JATS Makefile
# Environment(s): JATS Build System
#
# Description   : Makefile for packageDirTemplate
# 
#   This is a sample build.pl amd makefile.pl to package up an entire 
#   directory into dpkg_archive
#
#......................................................................#
#
# exec build system
#
require "$ARGV[1]";

Platform( '*' );

############################################################################
# Packaging definitions
#   The entire directory will be packaged
#   See MASS-0166 for deatils and other options
#   
PackageDir ('*', '--DirTree=dir1', '--Subdir=pkg/output1' );

#.............................................................................
# Finally generate the makefile
#
MakefileGenerate();

#..  Successful termination
1;

