Subversion Repositories DevTools

Rev

Blame | Last modification | View Log | RSS feed

##============================================================================
##             **** Copyright (c) VIX TECHNOLOGY (AUST) LTD ****
##
##============================================================================
die "Usage: Makefile.pl rootdir Makelib.pl\n"
unless( $#ARGV+1 >= 2 );
require "$ARGV[1]";

# subdirectories to recurse

# target platforms
Platform( '*' );

# build flags and paths

# source types

# source files

# files to be generated

# additional rules

# headers to be installed

# headers to be installed outside the sandbox

# libraries to be made

# libraries to be installed into the 'export' lib directory

# libraries to be installed outside the sandbox

# Scripts to Package
PackageFile('*', '--DirTree=scripts', '-Dir=pkg' );

#Package the docs directory
PackageFile('*', '--DirTree=../doc', '-Dir=pkg/doc');

#--- Finally generate the makefile
MakefileGenerate();