nnn/Makefile

48 lines
962 B
Makefile
Raw Normal View History

2016-08-24 09:47:25 +00:00
VERSION = 0.6
2014-11-14 12:20:37 +00:00
2014-10-21 15:52:40 +00:00
PREFIX = /usr/local
2014-10-22 11:52:45 +00:00
MANPREFIX = $(PREFIX)/man
#CPPFLAGS = -DDEBUG
#CFLAGS = -g
CFLAGS = -O3 -march=native
LDLIBS = -lcurses
2014-10-22 11:52:45 +00:00
DISTFILES = noice.c strlcat.c strlcpy.c util.h config.def.h\
noice.1 Makefile README LICENSE
OBJ = noice.o strlcat.o strlcpy.o
2014-10-07 06:05:30 +00:00
BIN = noice
all: $(BIN)
2014-10-21 19:58:46 +00:00
$(BIN): $(OBJ)
$(CC) $(CFLAGS) -o $@ $(OBJ) $(LDFLAGS) $(LDLIBS)
2017-03-29 20:59:28 +00:00
strip $(BIN)
2014-10-21 10:08:57 +00:00
2014-10-23 15:14:18 +00:00
noice.o: util.h config.h
strlcat.o: util.h
2014-10-21 19:58:46 +00:00
strlcpy.o: util.h
2014-10-21 10:08:57 +00:00
config.h:
cp config.def.h $@
2014-10-21 15:52:40 +00:00
install: all
2014-10-22 15:24:05 +00:00
mkdir -p $(DESTDIR)$(PREFIX)/bin
cp -f $(BIN) $(DESTDIR)$(PREFIX)/bin
2014-10-27 13:56:33 +00:00
mkdir -p $(DESTDIR)$(MANPREFIX)/man1
2014-10-22 15:24:05 +00:00
cp -f $(BIN).1 $(DESTDIR)$(MANPREFIX)/man1
2014-10-21 15:52:40 +00:00
uninstall:
2014-10-22 15:24:05 +00:00
rm -f $(DESTDIR)$(PREFIX)/bin/$(BIN)
rm -f $(DESTDIR)$(MANPREFIX)/man1/$(BIN).1
2014-10-21 15:52:40 +00:00
2014-11-14 12:20:37 +00:00
dist:
mkdir -p noice-$(VERSION)
cp $(DISTFILES) noice-$(VERSION)
2014-11-14 12:20:37 +00:00
tar -cf noice-$(VERSION).tar noice-$(VERSION)
gzip noice-$(VERSION).tar
rm -rf noice-$(VERSION)
2014-10-07 06:05:30 +00:00
clean:
2016-08-20 16:13:32 +00:00
rm -f config.h $(BIN) $(OBJ) noice-$(VERSION).tar.gz