Subversion Repositories DevTools

Rev

Rev 5692 | Rev 5847 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5692 dpurdie 1
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
2
#
3
# Module name   : Makefile.pl
4
# Module type   : Makefile system
5
# Compiler(s)   : ANSI C
6
# Environment(s): n/a
7
#
8
# Description:    makefile.pl timeout
9
#
10
#.........................................................................#
11
 
12
require "$ARGV[1]";
13
 
14
# Build platform definitions ..
15
#
16
Platform( '*' );
17
 
18
############################################################################
19
#   Define the source files
20
#
5710 dpurdie 21
Src ('*', "timeout_win32.cpp");                 # For Windows
5692 dpurdie 22
Src ('*', "timeout_unix.c");                    # For Unix
23
 
24
Prog('WINDOWS' , "timeout", "timeout_win32" );
25
Prog('UNIX'     ,"timeout", "timeout_unix" );
26
 
27
 
28
#.............................................................................
29
# Packaging definitions
30
#
31
InstallProg ( '*'   , @PROGS );
32
PackageProg ( '*'   , "timeout" );
33
 
34
#.............................................................................
35
# Finally generate the makefile
36
#
37
MakefileGenerate();
38
 
39
#..  Successful termination
40
1;
41