2019-12-29 18:13:09 +00:00
|
|
|
VERSION = $(shell grep -m1 VERSION $(SRC) | cut -f 2 -d'"')
|
2019-12-27 18:02:20 +00:00
|
|
|
|
|
|
|
PREFIX ?= /boot/system/non-packaged
|
2020-01-03 16:55:44 +00:00
|
|
|
MANPREFIX ?= $(PREFIX)/documentation/man
|
2019-12-27 18:02:20 +00:00
|
|
|
STRIP ?= strip
|
|
|
|
PKG_CONFIG ?= pkg-config
|
|
|
|
INSTALL ?= install
|
|
|
|
CP ?= cp
|
|
|
|
|
|
|
|
CFLAGS_OPTIMIZATION ?= -O3
|
|
|
|
|
2020-08-13 18:32:54 +00:00
|
|
|
O_DEBUG := 0 # debug binary
|
2019-12-27 18:02:20 +00:00
|
|
|
O_NORL := 0 # no readline support
|
2020-08-13 18:32:54 +00:00
|
|
|
O_PCRE := 0 # link with PCRE library
|
2021-05-24 17:08:08 +00:00
|
|
|
O_NOLC := 0 # no locale support
|
2020-08-13 18:32:54 +00:00
|
|
|
O_NOMOUSE := 0 # no mouse support
|
|
|
|
O_NOBATCH := 0 # no built-in batch renamer
|
|
|
|
O_NOFIFO := 0 # no FIFO previewer support
|
|
|
|
O_CTX8 := 0 # enable 8 contexts
|
2020-10-31 16:05:02 +00:00
|
|
|
O_ICONS := 0 # support icons-in-terminal
|
|
|
|
O_NERD := 0 # support icons-nerdfont
|
2020-08-21 02:45:45 +00:00
|
|
|
O_QSORT := 0 # use Alexey Tourbin's QSORT implementation
|
|
|
|
O_BENCH := 0 # benchmark mode (stops at first user input)
|
2020-10-31 16:05:02 +00:00
|
|
|
O_NOSSN := 0 # enable session support
|
|
|
|
O_NOUG := 0 # disable user, group name in status bar
|
2021-04-17 07:38:34 +00:00
|
|
|
O_NOX11 := 0 # disable X11 integration
|
2019-12-27 18:02:20 +00:00
|
|
|
|
2021-06-02 04:27:06 +00:00
|
|
|
# User patches
|
|
|
|
O_GITSTATUS := 0 # add git status to detail view
|
|
|
|
O_NAMEFIRST := 0 # print file name first, add uid and guid to detail view
|
|
|
|
|
|
|
|
ifeq ($(strip $(O_GITSTATUS)),1)
|
|
|
|
LDLIBS += -lgit2
|
|
|
|
endif
|
|
|
|
|
2019-12-27 18:02:20 +00:00
|
|
|
# convert targets to flags for backwards compatibility
|
|
|
|
ifneq ($(filter debug,$(MAKECMDGOALS)),)
|
|
|
|
O_DEBUG := 1
|
|
|
|
endif
|
|
|
|
ifneq ($(filter norl,$(MAKECMDGOALS)),)
|
|
|
|
O_NORL := 1
|
|
|
|
endif
|
2021-05-24 17:08:08 +00:00
|
|
|
ifneq ($(filter nolc,$(MAKECMDGOALS)),)
|
2019-12-27 18:02:20 +00:00
|
|
|
O_NORL := 1
|
2021-05-24 17:08:08 +00:00
|
|
|
O_NOLC := 1
|
2019-12-27 18:02:20 +00:00
|
|
|
endif
|
|
|
|
|
2021-01-13 14:13:07 +00:00
|
|
|
ifeq ($(strip $(O_DEBUG)),1)
|
2021-05-24 17:08:08 +00:00
|
|
|
CPPFLAGS += -DDEBUG
|
2019-12-27 18:02:20 +00:00
|
|
|
CFLAGS += -g
|
|
|
|
LDLIBS += -lrt
|
|
|
|
endif
|
|
|
|
|
2021-01-13 14:13:07 +00:00
|
|
|
ifeq ($(strip $(O_NORL)),1)
|
2019-12-27 18:02:20 +00:00
|
|
|
CPPFLAGS += -DNORL
|
2021-01-13 14:13:07 +00:00
|
|
|
else ifeq ($(strip $(O_STATIC)),1)
|
2020-02-12 03:24:04 +00:00
|
|
|
CPPFLAGS += -DNORL
|
2019-12-27 18:02:20 +00:00
|
|
|
else
|
|
|
|
LDLIBS += -lreadline
|
|
|
|
endif
|
|
|
|
|
2021-01-13 14:13:07 +00:00
|
|
|
ifeq ($(strip $(O_PCRE)),1)
|
2020-02-12 03:24:04 +00:00
|
|
|
CPPFLAGS += -DPCRE
|
|
|
|
LDLIBS += -lpcre
|
|
|
|
endif
|
|
|
|
|
2021-05-24 17:08:08 +00:00
|
|
|
ifeq ($(strip $(O_NOLC)),1)
|
2021-05-26 18:54:00 +00:00
|
|
|
ifeq ($(strip $(O_ICONS)),1)
|
|
|
|
$(info *** Ignoring O_NOLC since O_ICONS is set ***)
|
|
|
|
else ifeq ($(strip $(O_NERD)),1)
|
|
|
|
$(info *** Ignoring O_NOLC since O_NERD is set ***)
|
|
|
|
else
|
|
|
|
CPPFLAGS += -DNOLC
|
|
|
|
endif
|
2019-12-27 18:02:20 +00:00
|
|
|
endif
|
|
|
|
|
2021-01-13 14:13:07 +00:00
|
|
|
ifeq ($(strip $(O_NOMOUSE)),1)
|
2020-03-01 13:26:33 +00:00
|
|
|
CPPFLAGS += -DNOMOUSE
|
|
|
|
endif
|
|
|
|
|
2021-01-13 14:13:07 +00:00
|
|
|
ifeq ($(strip $(O_NOBATCH)),1)
|
2020-07-14 00:14:41 +00:00
|
|
|
CPPFLAGS += -DNOBATCH
|
|
|
|
endif
|
|
|
|
|
2021-01-13 14:13:07 +00:00
|
|
|
ifeq ($(strip $(O_NOFIFO)),1)
|
2020-07-14 00:14:41 +00:00
|
|
|
CPPFLAGS += -DNOFIFO
|
|
|
|
endif
|
|
|
|
|
2021-01-13 14:13:07 +00:00
|
|
|
ifeq ($(strip $(O_CTX8)),1)
|
2020-05-30 01:29:45 +00:00
|
|
|
CPPFLAGS += -DCTX8
|
|
|
|
endif
|
|
|
|
|
2021-01-13 14:13:07 +00:00
|
|
|
ifeq ($(strip $(O_ICONS)),1)
|
2020-08-16 01:00:58 +00:00
|
|
|
CPPFLAGS += -DICONS
|
|
|
|
endif
|
|
|
|
|
2021-01-13 14:13:07 +00:00
|
|
|
ifeq ($(strip $(O_NERD)),1)
|
2020-10-31 16:05:02 +00:00
|
|
|
CPPFLAGS += -DNERD
|
|
|
|
endif
|
|
|
|
|
2021-01-13 14:13:07 +00:00
|
|
|
ifeq ($(strip $(O_QSORT)),1)
|
2020-08-21 02:45:45 +00:00
|
|
|
CPPFLAGS += -DTOURBIN_QSORT
|
|
|
|
endif
|
|
|
|
|
2021-01-13 14:13:07 +00:00
|
|
|
ifeq ($(strip $(O_BENCH)),1)
|
2020-08-21 02:45:45 +00:00
|
|
|
CPPFLAGS += -DBENCH
|
|
|
|
endif
|
|
|
|
|
2021-01-13 14:13:07 +00:00
|
|
|
ifeq ($(strip $(O_NOSSN)),1)
|
2020-10-31 16:05:02 +00:00
|
|
|
CPPFLAGS += -DNOSSN
|
|
|
|
endif
|
|
|
|
|
2021-01-13 14:13:07 +00:00
|
|
|
ifeq ($(strip $(O_NOUG)),1)
|
2020-10-31 16:05:02 +00:00
|
|
|
CPPFLAGS += -DNOUG
|
|
|
|
endif
|
|
|
|
|
2021-04-17 07:38:34 +00:00
|
|
|
ifeq ($(strip $(O_NOX11)),1)
|
|
|
|
CPPFLAGS += -DNOX11
|
|
|
|
endif
|
|
|
|
|
2019-12-27 18:02:20 +00:00
|
|
|
ifeq ($(shell $(PKG_CONFIG) ncursesw && echo 1),1)
|
|
|
|
CFLAGS_CURSES ?= $(shell $(PKG_CONFIG) --cflags ncursesw)
|
|
|
|
LDLIBS_CURSES ?= $(shell $(PKG_CONFIG) --libs ncursesw)
|
|
|
|
else ifeq ($(shell $(PKG_CONFIG) ncurses && echo 1),1)
|
|
|
|
CFLAGS_CURSES ?= $(shell $(PKG_CONFIG) --cflags ncurses)
|
|
|
|
LDLIBS_CURSES ?= $(shell $(PKG_CONFIG) --libs ncurses)
|
|
|
|
else
|
|
|
|
LDLIBS_CURSES ?= -lncurses
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(shell uname -s), Haiku)
|
|
|
|
LDLIBS_HAIKU ?= -lstdc++ -lbe
|
|
|
|
SRC_HAIKU ?= misc/haiku/nm.cpp
|
|
|
|
OBJS_HAIKU ?= misc/haiku/nm.o
|
|
|
|
endif
|
|
|
|
|
2020-10-31 16:05:02 +00:00
|
|
|
CFLAGS += -std=c11 -Wall -Wextra -Wshadow
|
2019-12-27 18:02:20 +00:00
|
|
|
CFLAGS += $(CFLAGS_OPTIMIZATION)
|
|
|
|
CFLAGS += $(CFLAGS_CURSES)
|
|
|
|
|
2021-05-26 16:26:59 +00:00
|
|
|
LDLIBS += $(LDLIBS_CURSES) -lpthread $(LDLIBS_HAIKU)
|
2020-02-12 03:24:04 +00:00
|
|
|
# static compilation needs libgpm development package
|
2021-01-13 14:13:07 +00:00
|
|
|
ifeq ($(strip $(O_STATIC)),1)
|
2020-02-12 03:24:04 +00:00
|
|
|
LDFLAGS += -static
|
|
|
|
LDLIBS += -lgpm
|
|
|
|
endif
|
|
|
|
|
2019-12-29 18:13:09 +00:00
|
|
|
DISTFILES = src nnn.1 Makefile README.md LICENSE
|
2019-12-27 18:02:20 +00:00
|
|
|
SRC = src/nnn.c
|
|
|
|
HEADERS = src/nnn.h
|
|
|
|
BIN = nnn
|
|
|
|
OBJS := nnn.o $(OBJS_HAIKU)
|
|
|
|
|
2021-06-02 05:42:01 +00:00
|
|
|
GITSTATUS = patches/gitstatus
|
|
|
|
NAMEFIRST = patches/namefirst
|
2021-06-02 04:27:06 +00:00
|
|
|
|
2019-12-27 18:02:20 +00:00
|
|
|
all: $(BIN)
|
|
|
|
|
|
|
|
ifeq ($(shell uname -s), Haiku)
|
|
|
|
$(OBJS_HAIKU): $(SRC_HAIKU)
|
|
|
|
$(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
|
|
|
|
endif
|
|
|
|
|
|
|
|
nnn.o: $(SRC) $(HEADERS)
|
|
|
|
$(CC) -c $(CPPFLAGS) $(CFLAGS) -o $@ $<
|
|
|
|
|
|
|
|
$(BIN): $(OBJS)
|
2021-06-02 04:27:06 +00:00
|
|
|
@$(MAKE) --silent prepatch
|
2019-12-27 18:02:20 +00:00
|
|
|
$(CC) $(LDFLAGS) -o $@ $^ $(LDLIBS)
|
2021-06-02 04:27:06 +00:00
|
|
|
@$(MAKE) --silent postpatch
|
2019-12-27 18:02:20 +00:00
|
|
|
|
|
|
|
# targets for backwards compatibility
|
|
|
|
debug: $(BIN)
|
|
|
|
norl: $(BIN)
|
2021-05-24 17:08:08 +00:00
|
|
|
nolc: $(BIN)
|
2019-12-27 18:02:20 +00:00
|
|
|
|
|
|
|
install: all
|
|
|
|
$(INSTALL) -m 0755 -d $(DESTDIR)$(PREFIX)/bin
|
|
|
|
$(INSTALL) -m 0755 $(BIN) $(DESTDIR)$(PREFIX)/bin
|
|
|
|
$(INSTALL) -m 0755 -d $(DESTDIR)$(MANPREFIX)/man1
|
|
|
|
$(INSTALL) -m 0644 $(BIN).1 $(DESTDIR)$(MANPREFIX)/man1
|
|
|
|
|
|
|
|
uninstall:
|
|
|
|
$(RM) $(DESTDIR)$(PREFIX)/bin/$(BIN)
|
|
|
|
$(RM) $(DESTDIR)$(MANPREFIX)/man1/$(BIN).1
|
|
|
|
|
|
|
|
strip: $(BIN)
|
|
|
|
$(STRIP) $^
|
|
|
|
|
2020-01-30 21:46:06 +00:00
|
|
|
static:
|
2021-05-24 17:08:08 +00:00
|
|
|
# regular static binary
|
2020-01-30 21:46:06 +00:00
|
|
|
make O_STATIC=1 strip
|
|
|
|
mv $(BIN) $(BIN)-static
|
|
|
|
|
2019-12-27 18:02:20 +00:00
|
|
|
dist:
|
|
|
|
mkdir -p nnn-$(VERSION)
|
|
|
|
$(CP) -r $(DISTFILES) nnn-$(VERSION)
|
|
|
|
mkdir -p nnn-$(VERSION)/misc
|
|
|
|
$(CP) -r misc/haiku nnn-$(VERSION)/misc
|
2019-12-29 19:52:21 +00:00
|
|
|
tar -cf - nnn-$(VERSION) | gzip > nnn-$(VERSION).tar.gz
|
2019-12-27 18:02:20 +00:00
|
|
|
$(RM) -r nnn-$(VERSION)
|
|
|
|
|
2020-01-13 21:38:20 +00:00
|
|
|
sign:
|
|
|
|
git archive -o nnn-$(VERSION).tar.gz --format tar.gz --prefix=nnn-$(VERSION)/ v$(VERSION)
|
|
|
|
gpg --detach-sign --yes nnn-$(VERSION).tar.gz
|
|
|
|
rm -f nnn-$(VERSION).tar.gz
|
|
|
|
|
2020-01-30 21:46:06 +00:00
|
|
|
upload-local: sign static
|
2020-01-13 21:38:20 +00:00
|
|
|
$(eval ID=$(shell curl -s 'https://api.github.com/repos/jarun/nnn/releases/tags/v$(VERSION)' | jq .id))
|
2020-10-31 16:05:02 +00:00
|
|
|
# upload sign file
|
2020-01-13 21:38:20 +00:00
|
|
|
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
|
2020-05-26 00:51:01 +00:00
|
|
|
tar -zcf $(BIN)-static-$(VERSION).x86_64.tar.gz $(BIN)-static
|
2020-10-31 16:05:02 +00:00
|
|
|
# upload static binary
|
2020-05-26 00:51:01 +00:00
|
|
|
curl -XPOST 'https://uploads.github.com/repos/jarun/nnn/releases/$(ID)/assets?name=$(BIN)-static-$(VERSION).x86_64.tar.gz' \
|
2020-01-30 21:46:06 +00:00
|
|
|
-H 'Authorization: token $(NNN_SIG_UPLOAD_TOKEN)' -H 'Content-Type: application/x-sharedlib' \
|
2020-05-26 00:51:01 +00:00
|
|
|
--upload-file $(BIN)-static-$(VERSION).x86_64.tar.gz
|
2020-01-13 21:38:20 +00:00
|
|
|
|
2019-12-27 18:02:20 +00:00
|
|
|
clean:
|
2020-05-26 00:51:01 +00:00
|
|
|
$(RM) -f $(BIN) nnn-$(VERSION).tar.gz *.sig $(BIN)-static $(BIN)-static-$(VERSION).x86_64.tar.gz
|
2019-12-27 18:02:20 +00:00
|
|
|
|
2021-06-02 04:27:06 +00:00
|
|
|
prepatch:
|
|
|
|
ifeq ($(strip $(O_NAMEFIRST)),1)
|
|
|
|
patch --forward --strip=1 --input=$(NAMEFIRST)/mainline.diff
|
|
|
|
ifeq ($(strip $(O_GITSTATUS)),1)
|
|
|
|
patch --forward --strip=1 --input=$(GITSTATUS)/namefirst.diff
|
|
|
|
endif
|
|
|
|
else ifeq ($(strip $(O_GITSTATUS)),1)
|
|
|
|
patch --forward --strip=1 --input=$(GITSTATUS)/mainline.diff
|
|
|
|
endif
|
|
|
|
|
|
|
|
postpatch:
|
|
|
|
ifeq ($(strip $(O_NAMEFIRST)),1)
|
|
|
|
ifeq ($(strip $(O_GITSTATUS)),1)
|
|
|
|
patch --reverse --strip=1 --input=$(GITSTATUS)/namefirst.diff
|
|
|
|
endif
|
|
|
|
patch --reverse --strip=1 --input=$(NAMEFIRST)/mainline.diff
|
|
|
|
else ifeq ($(strip $(O_GITSTATUS)),1)
|
|
|
|
patch --reverse --strip=1 --input=$(GITSTATUS)/mainline.diff
|
|
|
|
endif
|
|
|
|
|
2019-12-27 18:02:20 +00:00
|
|
|
skip: ;
|
|
|
|
|
2020-01-30 21:46:06 +00:00
|
|
|
.PHONY: all install uninstall strip static dist sign upload-local clean
|