1#**************************************************************
2#
3#  Licensed to the Apache Software Foundation (ASF) under one
4#  or more contributor license agreements.  See the NOTICE file
5#  distributed with this work for additional information
6#  regarding copyright ownership.  The ASF licenses this file
7#  to you under the Apache License, Version 2.0 (the
8#  "License"); you may not use this file except in compliance
9#  with the License.  You may obtain a copy of the License at
10#
11#    http://www.apache.org/licenses/LICENSE-2.0
12#
13#  Unless required by applicable law or agreed to in writing,
14#  software distributed under the License is distributed on an
15#  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
16#  KIND, either express or implied.  See the License for the
17#  specific language governing permissions and limitations
18#  under the License.
19#
20#**************************************************************
21
22PRJ=..
23
24PRJNAME=ratscan
25TARGET=so_ratscan
26
27# --- Settings -----------------------------------------------------
28
29.INCLUDE :	settings.mk
30
31# --- Files --------------------------------------------------------
32
33.IF "$(RAT_JAR_HOME)"==""
34
35all:
36	@echo "rat scan is disabled."
37
38.ELSE
39
40TARFILE_NAME=apache-rat-0.10-bin
41TARFILE_MD5=0f926196d42577addec7e1aa5b510605
42TARFILE_ROOTDIR=apache-rat-0.10
43#TARFILE_NAME=apache-rat-incubating-0.8-bin
44#TARFILE_MD5=e4244e69eb3644e71c254aea5952a918
45#TARFILE_ROOTDIR=apache-rat-0.8
46
47# Trigger unpacking of archive.
48PATCH_FILES=
49
50CONFIGURE_DIR=
51CONFIGURE_ACTION=
52CONFIGURE_FLAGS=
53
54BUILD_DIR=
55BUILD_ACTION=echo no building necessary
56BUILD_FLAGS=
57
58OUT2CLASS=apache-rat-0.10.jar
59#OUT2CLASS=apache-rat-0.8.jar
60
61# --- Targets ------------------------------------------------------
62
63.INCLUDE : set_ext.mk
64.INCLUDE : target.mk
65.INCLUDE : tg_ext.mk
66
67.ENDIF
68