1
0
Fork 0
slstatus/Makefile

37 lines
970 B
Makefile
Raw Normal View History

2016-09-05 02:17:30 +03:00
# See LICENSE file for copyright and license details.
2017-08-10 22:32:10 +03:00
# slstatus - suckless status monitor
.POSIX:
2016-09-05 02:17:30 +03:00
include config.mk
2017-01-09 10:29:58 +02:00
all: slstatus
2016-09-05 02:17:30 +03:00
2017-01-09 13:05:29 +02:00
slstatus: slstatus.c config.h config.mk
2017-08-10 22:32:10 +03:00
$(CC) -o $@ $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) slstatus.c $(LDLIBS)
2017-01-09 09:24:26 +02:00
config.h:
cp config.def.h $@
2016-09-05 02:17:30 +03:00
clean:
2017-01-09 10:29:58 +02:00
rm -f slstatus
2016-09-05 02:17:30 +03:00
dist:
rm -rf "slstatus-$(VERSION)"
mkdir -p "slstatus-$(VERSION)"
cp -R arg.h config.def.h config.mk LICENSE Makefile README slstatus.1 \
slstatus.c slstatus.png "slstatus-$(VERSION)"
tar -cf - "slstatus-$(VERSION)" | gzip -c > "slstatus-$(VERSION).tar.gz"
rm -rf "slstatus-$(VERSION)"
2016-09-05 02:17:30 +03:00
install: all
2017-08-10 22:32:10 +03:00
mkdir -p "$(DESTDIR)$(PREFIX)/bin"
cp -f slstatus "$(DESTDIR)$(PREFIX)/bin"
chmod 755 "$(DESTDIR)$(PREFIX)/bin/slstatus"
mkdir -p "$(DESTDIR)$(MANPREFIX)/man1"
cp -f slstatus.1 "$(DESTDIR)$(MANPREFIX)/man1"
chmod 644 "$(DESTDIR)$(MANPREFIX)/man1/slstatus.1"
2016-09-05 02:17:30 +03:00
uninstall:
2017-08-10 22:32:10 +03:00
rm -f "$(DESTDIR)$(PREFIX)/bin/slstatus"
rm -f "$(DESTDIR)$(MANPREFIX)/man1/slstatus.1"