Rev 2073 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
# Copyright (C) 1998-2008 ERG Limited, All rights reserved## Module name : Makefile.pl# Module type : Makefile system# Compiler(s) : ANSI C# Environment(s): n/a## Description: makefile.pl CopyFile##.........................................................................#die "Usage: Makefile.pl roottest Makelib.pl\n"unless( $#ARGV+1 >= 2 );require "$ARGV[1]";# Build platform definitions ..#Platform( '*' );############################################################################# Define the source files#Src ('*', "CopyFile.c"); # For WindowsProg('WIN32' , "CopyFile", "CopyFile" );Prog('!WIN32' ,"CopyFile", "CopyFile" );#.............................................................................# Packaging definitions#InstallProg ( '*' , @PROGS );PackageProg ( '*' , "CopyFile" );#.............................................................................# Finally generate the makefile#MakefileGenerate();#.. Successful termination1;