Subversion Repositories DevTools

Rev

Rev 802 | Rev 820 | Go to most recent revision | 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
SubDir( 'ant-abt' );
SubDir( 'antwrap' );
SubDir( 'automakerelease' );
SubDir( 'config' );
SubDir( 'generated' );
SubDir( 'util' );

# target platforms
Platform( 'WIN32' );

# build flags and paths

# source types
Src( '*', 'version.c' );

# source files

# files to be generated

# additional rules
InstallHdr('*',         '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 sandbox
Src         ( '*', 'descpkg' );
PackageFile ( '*', 'descpkg' );

#--- Finally generate the makefile
MakefileGenerate();