1
1
mirror of https://github.com/jarun/nnn.git synced 2024-09-21 09:57:55 +03:00
nnn/Makefile

51 lines
1.2 KiB
Makefile
Raw Normal View History

2016-08-24 12:47:25 +03:00
VERSION = 0.6
2014-11-14 15:20:37 +03:00
2014-10-21 19:52:40 +04:00
PREFIX = /usr/local
2014-10-22 15:52:45 +04:00
MANPREFIX = $(PREFIX)/man
#CPPFLAGS = -DDEBUG
#CFLAGS = -g
2017-04-01 12:11:07 +03:00
CFLAGS = -O3 -march=native -fno-asynchronous-unwind-tables -fdata-sections \
-ffunction-sections -Wl,--gc-sections
LDLIBS = -lcurses
2014-10-22 15:52:45 +04:00
2017-04-01 12:11:07 +03:00
DISTFILES = nnn.c strlcat.c strlcpy.c util.h config.def.h \
nnn.1 Makefile README.md LICENSE
OBJ = nnn.o strlcat.o strlcpy.o
BIN = nnn
2014-10-07 10:05:30 +04:00
all: $(BIN)
2014-10-21 23:58:46 +04:00
$(BIN): $(OBJ)
$(CC) $(CFLAGS) -o $@ $(OBJ) $(LDFLAGS) $(LDLIBS)
2017-04-01 12:11:07 +03:00
strip -S --strip-unneeded --remove-section=.note.gnu.gold-version \
--remove-section=.comment --remove-section=.note \
--remove-section=.note.gnu.build-id --remove-section=.note.ABI-tag $(BIN)
2014-10-21 14:08:57 +04:00
nnn.o: util.h config.h
strlcat.o: util.h
2014-10-21 23:58:46 +04:00
strlcpy.o: util.h
2014-10-21 14:08:57 +04:00
2017-03-31 21:05:48 +03:00
config.h: config.def.h
cp config.def.h $@
2014-10-21 19:52:40 +04:00
install: all
2014-10-22 19:24:05 +04:00
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp -f $(BIN) $(DESTDIR)$(PREFIX)/bin
2014-10-27 16:56:33 +03:00
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
2014-10-22 19:24:05 +04:00
cp -f $(BIN).1 $(DESTDIR)$(MANPREFIX)/man1
2014-10-21 19:52:40 +04:00
uninstall:
2014-10-22 19:24:05 +04:00
rm -f $(DESTDIR)$(PREFIX)/bin/$(BIN)
rm -f $(DESTDIR)$(MANPREFIX)/man1/$(BIN).1
2014-10-21 19:52:40 +04:00
2014-11-14 15:20:37 +03:00
dist:
mkdir -p nnn-$(VERSION)
cp $(DISTFILES) nnn-$(VERSION)
tar -cf nnn-$(VERSION).tar nnn-$(VERSION)
gzip nnn-$(VERSION).tar
rm -rf nnn-$(VERSION)
2014-11-14 15:20:37 +03:00
2014-10-07 10:05:30 +04:00
clean:
rm -f config.h $(BIN) $(OBJ) nnn-$(VERSION).tar.gz