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-- 424 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# GNU/Linux makefile for ProGuard.

GSON_VERSION = 2.8.5
GSON_URL     = https://jcenter.bintray.com/com/google/code/gson/gson/${GSON_VERSION}/gson-${GSON_VERSION}.jar
GSON_JAR     = $(LIB)/gson-${GSON_VERSION}.jar

MAIN_CLASS       = proguard/ProGuard
CLASSPATH        = $(GSON_JAR)
TARGET           = proguard
INCLUDE_MANIFEST = true

include ../buildscripts/functions.mk

$(GSON_JAR):
	$(DOWNLOAD) $(GSON_JAR) $(GSON_URL)