#..
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
#
die "Usage: Makefile.pl rootdir Makelib.pl\n" unless( $#ARGV+1 >= 2 );
require "$ARGV[1]";

# subdirectories to recurse
SubDir( 'attend' );
SubDir( 'config' );
SubDir( 'generated' );

# target platforms
Platform( '*' );

# libraries to be installed outside the sandbox
Src         ( '*', 'descpkg' );
PackageFile ( '*', 'descpkg' );

#--- Finally generate the makefile
MakefileGenerate();
