taskwarrior.el/Makefile

31 lines
1,014 B
Makefile
Raw Normal View History

ELPA_DEPENDENCIES=package-lint transient dash
ELPA_ARCHIVES=melpa-stable gnu
TEST_ERT_FILES = $(wildcard test/*.el)
LINT_CHECKDOC_FILES = "taskwarrior.el" ${TEST_ERT_FILES}
LINT_PACKAGE_LINT_FILES = ${LINT_CHECKDOC_FILES}
LINT_COMPILE_FILES = ${LINT_CHECKDOC_FILES}
makel.mk: # Download makel
@if [ -f ../makel/makel.mk ]; then \
ln -s ../makel/makel.mk .; \
else \
curl \
--fail --silent --show-error --insecure --location \
--retry 9 --retry-delay 9 \
-O https://gitlab.petton.fr/DamienCassou/makel/raw/v0.5.3/makel.mk; \
fi
2019-09-02 22:17:46 +02:00
2019-10-23 11:38:57 +02:00
.PHONY: test-data
2019-09-02 22:17:46 +02:00
test-data: ## Generate some example tasks
for n in $$(seq 10); do task add "Example task $${n}"; done
2019-10-23 11:38:57 +02:00
# .PHONY: fetch-deps
# fetch-deps: ## Fetch required dependencies
# curl -fsSkL --retry 9 --retry-delay 9 -O "https://raw.githubusercontent.com/magit/transient/master/lisp/transient.el"
# curl -fsSkL --retry 9 --retry-delay 9 -O "https://raw.githubusercontent.com/magnars/dash.el/master/dash.el"
2019-10-23 11:38:57 +02:00
# Include makel.mk if present
-include makel.mk