Rev 229 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
# Copyright (c) VIX TECHNOLOGY (AUST) LTD## Module name : build.pl# Module type : Makefile system# Environment(s): JATS## Description: build.pl Template#.........................................................................##.. Build system#$MAKELIB_PL = "$ENV{ GBE_TOOLS }/makelib.pl";$BUILDLIB_PL = "$ENV{ GBE_TOOLS }/buildlib.pl";require "$BUILDLIB_PL";require "$MAKELIB_PL";#.. Product configuration#BuildAlias ( 'WINCE', 'WCEPSPC_emu', 'WCEPSPC_arm' ); # All the WinCE TargetsBuildAlias ( 'MOS', 'MOS68K', 'MOSCF' ); # All the MOS PlatformsBuildAlias ( 'WIN', 'WINCE', 'WIN32' ); # All the WIN TargetsorBuildProduct ( 'GAK', 'MOS68K', 'MOSCF' ); # VariationsBuildProduct ( 'PCP', 'MOS68K' ); # VariationsBuildProduct ( 'TP5', 'MOSCF' ); # VariationsBuildProduct ( 'VCP', 'MOS68K' ); # VariationsBuildAlias ( 'MOS', 'GAK', 'PCP', 'TP5', 'VCP' ); # All the MOS PlatformsBuildAlias ( 'WINCE', 'WCEPSPC_emu', 'WCEPSPC_arm' ); # All the WinCE TargetsBuildAlias ( 'WIN', 'WINCE', 'WIN32' ); # All the WIN TargetsBuildName ( 'BUILDNAME xx.xx.xx xx' );BuildInterface ( 'local' );BuildInterface ( 'interface' );#.. External Packages# Use LinkpkgArchive or BuildPkgArchive#LinkPkgArchive ( 'Package' , 'Version' );## Specify subdirectories to process#BuildSubDir ( 'src' );## Generate Files#BuildVersion (); # OptionalBuildDescpkg ();BuildMake ();