diff options
| author | David Bremner <david@tethera.net> | 2022-05-07 10:32:18 -0300 |
|---|---|---|
| committer | David Bremner <david@tethera.net> | 2022-06-17 08:40:19 -0300 |
| commit | 8ed68c1bbe8c1b7bb69d7bea1e0c8919bfcb0d0a (patch) | |
| tree | c882692f2ee185c7d30e227947bda6eaa0618a91 /Makefile.local | |
| parent | e50a413906b9fadf93b7801c4758b48792bb348f (diff) | |
CLI/git: change defaults for repo and prefix
The previous defaults were not suitable for personal (i.e. not
bugtracking for notmuch development) use.
Provide two ways for the user to select nmbug compatible defaults;
command line argument and checking the name of the script.
Diffstat (limited to 'Makefile.local')
| -rw-r--r-- | Makefile.local | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/Makefile.local b/Makefile.local index d2e0c7a8..7699c208 100644 --- a/Makefile.local +++ b/Makefile.local @@ -1,7 +1,7 @@ # -*- makefile-gmake -*- .PHONY: all -all: notmuch notmuch-shared build-man build-info ruby-bindings python-cffi-bindings notmuch-git +all: notmuch notmuch-shared build-man build-info ruby-bindings python-cffi-bindings notmuch-git nmbug ifeq ($(MAKECMDGOALS),) ifeq ($(shell cat .first-build-message 2>/dev/null),) @NOTMUCH_FIRST_BUILD=1 $(MAKE) --no-print-directory all @@ -50,6 +50,10 @@ notmuch-git: notmuch-git.py cp $< $@ chmod ugo+x $@ +CLEAN := $(CLEAN) nmbug +nmbug: notmuch-git + ln -s $< $@ + .PHONY: dist dist: $(TAR_FILE) |
