mirror of
https://github.com/jarun/nnn.git
synced 2025-03-01 20:39:20 +00:00
Use a var for dist files and remove queue.h
This commit is contained in:
parent
3e8555fdc6
commit
eebbf61c10
1 changed files with 3 additions and 1 deletions
4
Makefile
4
Makefile
|
@ -7,6 +7,8 @@ MANPREFIX = $(PREFIX)/man
|
||||||
#CFLAGS += -g
|
#CFLAGS += -g
|
||||||
LDLIBS = -lncursesw
|
LDLIBS = -lncursesw
|
||||||
|
|
||||||
|
DISTFILES = noice.c strlcat.c strlcpy.c util.h config.def.h\
|
||||||
|
noice.1 Makefile README LICENSE
|
||||||
OBJ = noice.o strlcat.o strlcpy.o
|
OBJ = noice.o strlcat.o strlcpy.o
|
||||||
BIN = noice
|
BIN = noice
|
||||||
|
|
||||||
|
@ -31,7 +33,7 @@ uninstall:
|
||||||
|
|
||||||
dist:
|
dist:
|
||||||
mkdir -p noice-$(VERSION)
|
mkdir -p noice-$(VERSION)
|
||||||
cp LICENSE Makefile README config.def.h noice.1 noice.c queue.h strlcat.c strlcpy.c util.h noice-$(VERSION)
|
cp $(DISTFILES) noice-$(VERSION)
|
||||||
tar -cf noice-$(VERSION).tar noice-$(VERSION)
|
tar -cf noice-$(VERSION).tar noice-$(VERSION)
|
||||||
gzip noice-$(VERSION).tar
|
gzip noice-$(VERSION).tar
|
||||||
rm -rf noice-$(VERSION)
|
rm -rf noice-$(VERSION)
|
||||||
|
|
Loading…
Add table
Reference in a new issue