Blame | Last modification | View Log | RSS feed
######################################################################### Copyright (C) 1998-2012 Vix Technology, All rights reserved## Module name : makefile.pl# Module type : JATS Makefile# Environment(s): JATS Build System## Description : Makefile for CotsWithRippleVersion##......................................................................### exec build system#die "Usage: Makefile.pl rootdir Makelib.pl\n" unless( $#ARGV+1 >= 2 );require "$ARGV[1]";Platform( '*' );############################################################################# Define the source files#Src ( '*' , "file.c" );## Build and install the libraryProg ( '*', "Hello", "file" );#.............................................................................# Packaging definitions#PackageFile ( '*' , 'descpkg' );PackageProg ( '*' , @PROGS );#.............................................................................# Finally generate the makefile#MakefileGenerate();#.. Successful termination1;