mirror of
https://github.com/Guardsquare/proguard.git
synced 2026-03-13 09:50:34 +08:00
16 lines
424 B
Makefile
16 lines
424 B
Makefile
# 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)
|