Blame | Last modification | View Log | RSS feed
######################################################################### COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.## Module name : build.pl# Module type : Makefile system# Compiler(s) : Perl# Environment(s): jats## Description : Jats build file for packageDirTemplate## This is a sample build.pl amd makefile.pl to package up an entire# directory into dpkg_archive. The operations are machine independent and# thus the package is built for a 'GENERIC' target.##......................................................................###.. Build system#$MAKELIB_PL = "$ENV{ GBE_TOOLS }/makelib.pl";$BUILDLIB_PL = "$ENV{ GBE_TOOLS }/buildlib.pl";require "$BUILDLIB_PL";require "$MAKELIB_PL";#.. Product configuration#BuildPlatforms ( 'GENERIC' );BuildName ( 'packageDirTemplate 00.00.00 cr' );BuildInterface ( 'interface' );## Specify subdirectories to process#BuildSubDir ( 'src' );## Generate FilesBuildDescpkg ();BuildMake ();