nnn/Makefile.native

54 lines
1.2 KiB
Makefile
Raw Normal View History

2017-05-13 17:01:14 +00:00
VERSION = 1.1
2017-04-13 02:42:10 +00:00
PREFIX = /usr/local
2017-04-13 14:56:09 +00:00
MANPREFIX = $(PREFIX)/share/man
2017-04-13 02:42:10 +00:00
2017-05-13 17:01:14 +00:00
CFLAGS += -O3 -march=native -Wall -Wextra -Wno-unused-parameter
LDLIBS = -lreadline
2017-05-13 17:01:14 +00:00
ifeq ($(shell pkg-config ncursesw && echo 1),1)
CFLAGS += $(shell pkg-config --cflags ncursesw)
LDLIBS += $(shell pkg-config --libs ncursesw)
else
2017-05-13 17:01:14 +00:00
LDLIBS += -lncurses
endif
2017-04-13 02:42:10 +00:00
DISTFILES = nlay nnn.c config.def.h nnn.1 Makefile README.md LICENSE
2017-04-13 02:42:10 +00:00
LOCALCONFIG = config.h
SRC = nnn.c
BIN = nnn
PLAYER = nlay
2017-04-13 02:42:10 +00:00
all: $(BIN) $(PLAYER)
2017-04-13 02:42:10 +00:00
$(LOCALCONFIG): config.def.h
cp config.def.h $@
$(SRC): $(LOCALCONFIG)
$(BIN): $(SRC)
$(CC) $(CFLAGS) $(CPPFLAGS) -o $@ $^ $(LDFLAGS) $(LDLIBS)
strip $@
install: all
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp -f $(BIN) $(DESTDIR)$(PREFIX)/bin
cp -f $(PLAYER) $(DESTDIR)$(PREFIX)/bin
2017-04-13 02:42:10 +00:00
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
cp -f $(BIN).1 $(DESTDIR)$(MANPREFIX)/man1
uninstall:
rm -f $(DESTDIR)$(PREFIX)/bin/$(BIN)
rm -f $(DESTDIR)$(PREFIX)/bin/$(PLAYER)
2017-04-13 02:42:10 +00:00
rm -f $(DESTDIR)$(MANPREFIX)/man1/$(BIN).1
dist:
mkdir -p nnn-$(VERSION)
cp $(DISTFILES) nnn-$(VERSION)
tar -cf nnn-$(VERSION).tar nnn-$(VERSION)
gzip nnn-$(VERSION).tar
rm -rf nnn-$(VERSION)
clean:
rm -f $(BIN) nnn-$(VERSION).tar.gz