Subversion Repositories DevTools

Rev

Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
3410 dpurdie 1
########################################################################
2
# Copyright (C) 1998-2013 Vix Technology, All rights reserved
3
#
4
# Module name   : makefile.pl
5
# Module type   : JATS Makefile
6
# Environment(s): JATS Build System
7
#
8
# Description   : Makefile for dpkg_management
9
#
10
#......................................................................#
11
#
12
# exec build system
13
#
14
die "Usage: Makefile.pl rootdir Makelib.pl\n" unless( $#ARGV+1 >= 2 );
15
require "$ARGV[1]";
16
 
17
Platform    ( '*' );
18
PackageFile ( '*', '--Subdir=pkg', '--DirTree=cron' );
19
PackageFile ( '*', '--Subdir=pkg', '--DirTree=sbin' );
20
 
21
MakefileGenerate();
22