mirror of
https://github.com/Guardsquare/proguard.git
synced 2026-03-13 09:50:34 +08:00
16 lines
403 B
Makefile
16 lines
403 B
Makefile
# GNU/Linux makefile for the ProGuard Wireless Toolkit plugin.
|
|
|
|
ifndef WTK_HOME
|
|
WTK_HOME = /usr/local/java/wtk
|
|
endif
|
|
|
|
MAIN_CLASS = proguard/wtk/ProGuardObfuscator
|
|
WTK_JAR = $(WTK_HOME)/wtklib/kenv.zip
|
|
CLASSPATH = ../base/$(OUT):../core/$(OUT):$(WTK_JAR)
|
|
TARGET = proguard
|
|
UPDATE_JAR = true
|
|
|
|
include ../buildscripts/functions.mk
|
|
|
|
$(WTK_JAR): ; $(error Please make sure WTK_HOME is set correctly)
|