Rev 6914 | 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 filesSrc( '*', 'attend.cc' );Src( '*', 'Process.cc' );Src( '*', 'Process.h' );Src( '*', 'psapi.h' );Src( '*', 'psapi.dll' );# Programs to be madeProg( '*', 'attend', @OBJS, '-LAdvapi32','-LPsapi' );# Programs to be packagedPackageProg( '*', 'attend' );#--- Finally generate the makefileMakefileGenerate();