# Copyright (C) 1998-2004 ERG Limited, All rights reserved
#
# Module name   : Makefile.pl
# Module type   : Makefile system
# Compiler(s)   : ANSI C
# Environment(s): n/a
#
# Description:    makefile.pl template example
#
#.........................................................................#

require "$ARGV[1]";

# Build platform definitions ..
#
Platform( '*' );

############################################################################
#   Define the source files
#
AddFlags   ( '*' ,'-DUNICODE');
Src        ( '*' , "gunzip.cpp" );

#
#   Build the program

Prog       ( '*', "gunzip", "gunzip" );

#.............................................................................
# Packaging definitions
#
PackageProg ( '*'   , @PROGS , '--Dir=BIN.$(GBE_MACHTYPE)', '--Extras=none');

#.............................................................................
# Finally generate the makefile
#
MakefileGenerate();

#..  Successful termination
1;

