Subversion Repositories DevTools

Rev

Rev 7047 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6914 dpurdie 1
########################################################################
2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
3
# Module name   : makefile.pl
4
# Module type   : JATS Makefile
5
# Environment(s): JATS Build System
6
#
7
# Description   : Makefile for buildtool with Gradle
8
#
9
#......................................................................#
10
#
11
# exec build system
12
#
13
require "$ARGV[1]";
14
 
15
SubDir ('attend');
16
SubDir ('config');
17
 
18
# target platforms
19
Platform( '*' );
20
 
21
# Build and Test 27-Feb-19with gradle
22
GradleRoot  ( 'JAVA','../build.gradle');
23
Gradle      ( 'JAVA','../build.gradle', 'eclipse', 'build');
24
GradleTest  ( 'JAVA','../build.gradle', 'test');
25
 
26
# Basic Packaging
27
PackageFile ( '*', 'descpkg' );
28
 
29
#--- Finally generate the makefile
30
MakefileGenerate();