TARGET = stracks_devel

#OPTS = --apk
#OPTS = --deprecation
#OPTS = --obfuscate

default: build
devel: build

module: TARGET=stracks_module
module: build

light: TARGET = stracks_light
light: OPTS = --obfuscate
light: build

full: TARGET = stracks_full
full: OPTS = --obfuscate
full: build

test: TARGET = stracks_test
test: OPTS = --obfuscate
test: build

local: TARGET = stracks_local
local: build



all: 
	$(MAKE) full
	$(MAKE) light
	$(MAKE) test
	$(MAKE) local
	$(MAKE) devel


xrelease:TARGET=stracks_local


include ../../Make.incl

