Blame | Last modification | View Log | RSS feed
#..# Copyright (C) 1998-2000 ERG Transit Systems, All rights reserved#die "Usage: Makefile.pl rootdir Makelib.pl\n"unless( $#ARGV+1 >= 2 );require "$ARGV[1]";# subdirectories to recurseSubDir( 'config' );SubDir( 'jwrap' );SubDir( 'genbuild' );SubDir( 'publish' );# target platformsPlatform( 'WIN32', 'SOLARIS' );# build flags and paths# source typesSrc( '*', 'version.c' );# source files# files to be generated# additional rulesInstallHdr('*', 'version.h' );# Libraries to be built#Lib('*', 'version', 'version.o');# Libraries to be installed#InstallLib('*', 'version' );# headers to be installed# headers to be installed outside the sandbox# libraries to be made# programs to be made# libraries to be installed into the 'export' lib directory# libraries to be installed outside the sandboxScript( '*', 'descpkg' );PackageProg( '*', 'descpkg', "--Dir=$Pbase", '--Set=A' );#--- Finally generate the makefileMakefileGenerate();