Skip to content
Makefile 456 B
Newer Older
DEMO_PROJECT_NAME := foo-bar
https_proxy ?= 127.0.0.1:8123
test: py3
	rm -rf $(DEMO_PROJECT_NAME)
	lein new python $(DEMO_PROJECT_NAME)
	cd $(DEMO_PROJECT_NAME) && cmake -G Ninja -S . -B _build && cmake --build _build --target check
	rm -rf $(DEMO_PROJECT_NAME)
Yuanle Song's avatar
Yuanle Song committed
deploy:
Yuanle Song's avatar
Yuanle Song committed
# Please use a https proxy when run inside GFW.
	env https_proxy=$(https_proxy) lein deploy clojars
.PHONY: default test install py3 deploy