mirror of
https://github.com/declaresub/pygments-xojo.git
synced 2026-05-16 14:15:54 -06:00
19 lines
357 B
Makefile
19 lines
357 B
Makefile
|
|
SCRIPT_DIR ?= "make_scripts"
|
|
|
|
|
|
build_dist:
|
|
@$(SCRIPT_DIR)/build_dist.bash
|
|
|
|
# Removes development/build directories that accumulate over time.
|
|
clean:
|
|
@$(SCRIPT_DIR)/clean.bash
|
|
|
|
test:
|
|
tox
|
|
|
|
# Creates virtual environments for development using the Python executables in $ENV_LIST.
|
|
# Existing environments are recreated.
|
|
venv:
|
|
@$(SCRIPT_DIR)/venv.bash
|
|
|