slstatus/Makefile

37 lines
970 B
Makefile
Raw Normal View History

2016-09-04 23:17:30 +00:00
# See LICENSE file for copyright and license details.
2017-08-10 19:32:10 +00:00
# slstatus - suckless status monitor
.POSIX:
2016-09-04 23:17:30 +00:00
include config.mk
2017-01-09 08:29:58 +00:00
all: slstatus
2016-09-04 23:17:30 +00:00
2017-01-09 11:05:29 +00:00
slstatus: slstatus.c config.h config.mk
2017-08-10 19:32:10 +00:00
$(CC) -o $@ $(CFLAGS) $(CPPFLAGS) $(LDFLAGS) slstatus.c $(LDLIBS)
2017-01-09 07:24:26 +00:00
config.h:
cp config.def.h $@
2016-09-04 23:17:30 +00:00
clean:
2017-01-09 08:29:58 +00:00
rm -f slstatus
2016-09-04 23:17:30 +00: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-04 23:17:30 +00:00
install: all
2017-08-10 19:32:10 +00: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-04 23:17:30 +00:00
uninstall:
2017-08-10 19:32:10 +00:00
rm -f "$(DESTDIR)$(PREFIX)/bin/slstatus"
rm -f "$(DESTDIR)$(MANPREFIX)/man1/slstatus.1"