Rev 5710 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
# Copyright (c) VIX TECHNOLOGY (AUST) LTD## Module name : Makefile.pl# Module type : Makefile system# Compiler(s) : ANSI C# Environment(s): n/a## Description: makefile.pl timeout##.........................................................................#require "$ARGV[1]";# Build platform definitions ..#Platform( '*' );############################################################################# Define the source files#Src ('*', "timeout_win32.c"); # For WindowsSrc ('*', "timeout_unix.c"); # For UnixProg('WINDOWS' , "timeout", "timeout_win32" );Prog('UNIX' ,"timeout", "timeout_unix" );#.............................................................................# Packaging definitions#InstallProg ( '*' , @PROGS );PackageProg ( '*' , "timeout" );#.............................................................................# Finally generate the makefile#MakefileGenerate();#.. Successful termination1;