-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fixing missing choices when choice is not a dictionary
- Loading branch information
1 parent
e5b3c2e
commit 21c6a9b
Showing
2 changed files
with
54 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
# Emacs | ||
*~ | ||
.#* | ||
\#*\# | ||
TAGS | ||
|
||
# Mac | ||
.DS_Store | ||
|
||
# pytest | ||
__pycache__ | ||
.pytest_cache | ||
|
||
# Ignore python local install build symlinks et al | ||
.venv | ||
poetry.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# Ancient Makefile implicit rule disabler | ||
(%): % | ||
%:: %,v | ||
%:: RCS/%,v | ||
%:: s.% | ||
%:: SCCS/s.% | ||
%.out: % | ||
%.c: %.w %.ch | ||
%.tex: %.w %.ch | ||
%.mk: | ||
|
||
# Variables | ||
DOC_DIR := docs | ||
SRC_DIR := . | ||
TEST_DIR := tests | ||
|
||
# Use colors for errors and warnings when in an interactive terminal | ||
INTERACTIVE := $(shell test -t 0 && echo 1) | ||
ifdef INTERACTIVE | ||
RED := \033[0;31m | ||
END := \033[0m | ||
else | ||
RED := | ||
END := | ||
endif | ||
|
||
# Let there be no default target | ||
.PHONY: default | ||
default: | ||
@echo "${RED}There is no default make target.${END} Specify one of:" | ||
@echo "etags - constructs an emacs tags table" | ||
@echo "" | ||
@echo "See ${BUILD_DIR}/README.md for more details and info" | ||
|
||
# emacs tags (for javascript need GNU's universal-ctag package) | ||
.PHONY: etags | ||
etags: | ||
/opt/homebrew/bin/ctags -e -R |