Subversion Repositories DevTools

Rev

Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

# Copyright (C) 1998-2005 ERG Limited, All rights reserved
#
# Module name   : Makefile.pl
# Module type   : Makefile system
# Compiler(s)   : ANSI C
# Environment(s): n/a
#
# Description:    Makefile for generating binflow
#
#.........................................................................#

die "Usage: Makefile.pl rootdir Makelib.pl\n"
    unless( $#ARGV+1 >= 2 );
require "$ARGV[1]";

# Build platform definitions ..
#
Platform( '*' );
AddFlags( '*', "-D_CONSOLE" );
AddFlags( '*', "-D_MBCS" );
AddFlags( '*', "-DWIN32" );


############################################################################
#   Define the source files
#
Src     ('*',  'binflow.c');
Prog    ('*',  'binflow', @OBJS );

#.............................................................................
#   Packaging definitions
#   Package the program as a JATS toolset extension
#
PackageProg  ( '*', @PROGS );


Src         ( '*', 'descpkg' );
PackageFile ( '*', 'descpkg' );

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

#..  Successful termination
1;