-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile
57 lines (47 loc) · 1.92 KB
/
Makefile
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
.PHONY: pre-reqs init
BINARIES_DIR:="$$HOME/.local/bin"
TEST_DIR := tests
LUAJIT := luajit -O -joff
test:
@set -e; \
for file in $(TEST_DIR)/*.lua; do \
echo "Running $$file..."; \
$(LUAJIT) $$file || exit 1; \
done
pre-reqs:
@if ! command -v pg_query_prepare >/dev/null 2>&1; then \
echo "pg_query_prepare not found. Cloning and building pg_query_utils..."; \
rm -rf pg_query_utils && \
git clone --recurse-submodules --depth 1 https://github.com/timwmillard/pg_query_utils.git && \
cd pg_query_utils && \
sed -i '' '/^all:/s/pg_describe_query.*//;' Makefile && \
make && \
mkdir -p "$$HOME/.local/bin" && \
cp pg_query_prepare "$$HOME/.local/bin" && \
cp pg_query_json "$$HOME/.local/bin" && \
cp pg_query_fingerprint "$$HOME/.local/bin" && \
cd .. && \
rm -rf pg_query_utils; \
else \
echo "pg_query_prepare already installed."; \
fi
check-bins: # List installed binaries
@find $(BINARIES_DIR) -type f -name "*pg_query*" -exec realpath {} \;
clean: ## Remove pg query binaries
@$(MAKE) check-bins | xargs rm
build-image: ## build the project in a docker image, with luajit and make.
docker build -t luajit-make .
run-pg-query-prepare: ## Run scripts/testing.sql through pg_query_prepare --details
@cat scripts/testing.sql | pg_query_prepare -d
init: pre-reqs ## build and install pg_query_utils and its dependencies, to $(BINARIES_DIR)
reinstall-reqs: clean pre-reqs ## Delete and reinstall the pg_query binaries, using the latest version from github
# HELP - will output the help for each task in the Makefile
# In sorted order.
# The width of the first column can be determined by the `width` value passed to awk
#
# thanks to https://marmelab.com/blog/2016/02/29/auto-documented-makefile.html for the initial version.
#
help: ## This help.
@grep -E -h "^[a-zA-Z_-]+:.*?## " $(MAKEFILE_LIST) \
| sort \
| awk -v width=36 'BEGIN {FS = ":.*?## "} {printf "\033[36m%-*s\033[0m %s\n", width, $$1, $$2}'