-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
32 lines (27 loc) · 993 Bytes
/
Makefile
File metadata and controls
32 lines (27 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# ============================================================================ #
# SHELL CONFIGURATION
# ============================================================================ #
SHELL := /bin/bash
# ============================================================================ #
# HELP
# ============================================================================ #
## help: Show this help message
.PHONY: help
help:
@echo 'sqllogictest-mode - Available Commands:'
@echo ''
@sed -n 's/^##//p' ${MAKEFILE_LIST} | column -t -s ':' | sed -e 's/^/ /'
@echo ''
@echo 'Examples:'
@echo ' make test # Run ERT tests'
@echo ''
# ============================================================================ #
# DEVELOPMENT
# ============================================================================ #
## test: Run ERT tests in batch mode
.PHONY: test
test:
@emacs --batch -l ert \
-l sqllogictest-mode.el \
-l sqllogictest-mode-test.el \
-f ert-run-tests-batch-and-exit