Rev 882 | Blame | Compare with Previous | 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 recurse# target platformsPlatform( 'WIN32', '--OnlyProd' );# build flags and pathsAddLibDir('*', '.');# source types# source filesSrc( '*', 'attend.cc' );Src( '*', 'Process.cc' );Src( '*', 'Process.h' );Src( 'WIN32', 'psapi.h' );Src( 'WIN32', 'psapi.dll' );# files to be generated# additional rules# 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# headers to be installed outside the sandbox# libraries to be made# programs to be madeProg( 'WIN32', 'attend','attend.o', 'Process.o','-LAdvapi32','-LPsapi' );# libraries to be installed into the 'export' lib directory# libraries to be installed outside the sandboxPackageProg( '*', 'attend' );#--- Finally generate the makefileMakefileGenerate();