File: makefile

package info (click to toggle)
proguard 6.2.2-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 8,712 kB
  • sloc: java: 97,785; xml: 1,015; sh: 256; makefile: 91
file content (15 lines) | stat: -rw-r--r-- 363 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# GNU/Linux makefile for the ProGuard Ant task.

ifndef ANT_HOME
ANT_HOME = /usr/local/java/ant
endif

MAIN_CLASS = proguard/ant/ProGuardTask
ANT_JAR    = $(ANT_HOME)/lib/ant.jar
CLASSPATH  = ../core/$(OUT):$(ANT_JAR)
TARGET     = proguard
UPDATE_JAR = true

include ../buildscripts/functions.mk

$(ANT_JAR): ; $(error Please make sure ANT_HOME is set correctly)