Skip to content

Instantly share code, notes, and snippets.

@AeroNotix
Created March 11, 2015 13:21
LEIN = ./utils/lein.sh
CLJ_FILES := $(shell find . -name "*.clj")
export LEIN_SNAPSHOTS_IN_RELEASE=1
compile:
@${LEIN} compile
deps:
@${LEIN} deps
target/uberjar/airos-websocket-client.jar: ${CLJ_FILES}
@${LEIN} uberjar
uberjar: deps compile target/uberjar/airos-websocket-client.jar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment