diff options
author | Arun Prakash Jana <engineerarun@gmail.com> | 2020-03-01 18:56:33 +0530 |
---|---|---|
committer | Arun Prakash Jana <engineerarun@gmail.com> | 2020-03-01 18:56:33 +0530 |
commit | db129c9120252c04b2eec894b7c26a4f2a1f0453 (patch) | |
tree | 4337087720c88a6440f0c392658e42c6e277ee33 /misc/haiku | |
parent | f3c4dae1dd1568fa1aa529ad7e16e73dca03b309 (diff) | |
download | nnn-db129c9120252c04b2eec894b7c26a4f2a1f0453.tar.gz |
Update Haiku Makefile
Diffstat (limited to 'misc/haiku')
-rw-r--r-- | misc/haiku/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/misc/haiku/Makefile b/misc/haiku/Makefile index 192ff6d..fdba8d3 100644 --- a/misc/haiku/Makefile +++ b/misc/haiku/Makefile @@ -48,6 +48,10 @@ ifeq ($(O_NOLOC),1) CPPFLAGS += -DNOLOCALE endif +ifeq ($(O_NOMOUSE),1) + CPPFLAGS += -DNOMOUSE +endif + ifeq ($(shell $(PKG_CONFIG) ncursesw && echo 1),1) CFLAGS_CURSES ?= $(shell $(PKG_CONFIG) --cflags ncursesw) LDLIBS_CURSES ?= $(shell $(PKG_CONFIG) --libs ncursesw) @@ -135,8 +139,8 @@ upload-local: sign static curl -XPOST 'https://uploads.github.com/repos/jarun/nnn/releases/$(ID)/assets?name=nnn-$(VERSION).tar.gz.sig' \ -H 'Authorization: token $(NNN_SIG_UPLOAD_TOKEN)' -H 'Content-Type: application/pgp-signature' \ --upload-file nnn-$(VERSION).tar.gz.sig - tar -cf $(BIN)-static-$(VERSION).x86-64.tar.gz $(BIN)-static - curl -XPOST 'https://uploads.github.com/repos/jarun/nnn/releases/$(ID)/assets?name=nnn-$(VERSION)-static-$(VERSION).x86-64.tar.gz' \ + tar -zcf $(BIN)-static-$(VERSION).x86-64.tar.gz $(BIN)-static + curl -XPOST 'https://uploads.github.com/repos/jarun/nnn/releases/$(ID)/assets?name=$(BIN)-static-$(VERSION).x86-64.tar.gz' \ -H 'Authorization: token $(NNN_SIG_UPLOAD_TOKEN)' -H 'Content-Type: application/x-sharedlib' \ --upload-file $(BIN)-static-$(VERSION).x86-64.tar.gz |