We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63a1d3a commit 618e33dCopy full SHA for 618e33d
Makefile
@@ -23,6 +23,9 @@ ifeq ($(postgres), true)
23
PG_FLAG := -f postgres
24
endif
25
26
+help:
27
+ @grep -E '^[a-zA-Z0-9 -]+:.*#' Makefile | sort | while read -r l; do printf "\033[1;32m$$(echo $$l | cut -f 1 -d':')\033[00m:$$(echo $$l | cut -f 2- -d'#')\n"; done
28
+
29
all: $(OUT)/bin/kupo \
30
$(OUT)/share/zsh/site-functions/_kupo \
31
$(OUT)/share/bash-completion/completions/kupo \
@@ -142,6 +145,3 @@ clean: # Remove build artifacts
142
145
143
146
clean-all: clean # Remove build artifacts & build cache
144
147
cabal clean
-
-help:
- @grep -E '^[a-zA-Z0-9 -]+:.*#' Makefile | sort | while read -r l; do printf "\033[1;32m$$(echo $$l | cut -f 1 -d':')\033[00m:$$(echo $$l | cut -f 2- -d'#')\n"; done
0 commit comments