1
0
Fork 0
slstatus/Makefile

76 lines
1.8 KiB
Makefile
Raw Normal View History

# 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
2018-04-30 13:14:31 +00:00
include os.mk
2016-09-04 23:17:30 +00:00
include config.mk
REQ = util
COM =\
2018-04-30 13:14:32 +00:00
components/$(OS)/battery \
2018-04-30 13:14:33 +00:00
components/$(OS)/cpu \
components/datetime\
components/disk\
2018-04-30 13:14:34 +00:00
components/$(OS)/entropy \
components/hostname\
components/ip\
components/kernel_release\
components/keyboard_indicators\
components/load_avg\
components/num_files\
2018-04-30 13:14:35 +00:00
components/$(OS)/ram \
components/run_command\
2018-04-30 13:14:36 +00:00
components/$(OS)/swap \
2018-04-30 13:14:37 +00:00
components/$(OS)/temperature \
2018-04-30 13:14:38 +00:00
components/$(OS)/uptime \
components/user\
components/volume\
2018-04-30 13:14:39 +00:00
components/$(OS)/wifi
SLSCFLAGS = -I$(X11INC) -D_DEFAULT_SOURCE $(CFLAGS)
SLSLDFLAGS = -L$(X11LIB) $(LDFLAGS)
SLSLIBS = -lX11 $(OSLIBS) $(LIBS)
2017-01-09 08:29:58 +00:00
all: slstatus
2016-09-04 23:17:30 +00:00
slstatus: slstatus.o $(COM:=.o) $(REQ:=.o)
slstatus.o: slstatus.c slstatus.h arg.h config.h $(REQ:=.h)
$(COM:=.o): config.mk $(REQ:=.h)
2017-09-17 20:31:26 +00:00
config.h:
cp config.def.h $@
.o:
$(CC) -o $@ $(SLSLDFLAGS) $< $(COM:=.o) $(REQ:=.o) $(SLSLIBS)
2017-01-09 07:24:26 +00:00
.c.o:
$(CC) -o $@ -c $(SLSCFLAGS) $<
2016-09-04 23:17:30 +00:00
clean:
rm -f slstatus slstatus.o $(COM:=.o) $(REQ:=.o)
2016-09-04 23:17:30 +00:00
2018-04-30 14:14:05 +00:00
distclean:
for os in Linux OpenBSD; do make OS="$$os" clean; done
rm -f os.mk
dist:
rm -rf "slstatus-$(VERSION)"
mkdir -p "slstatus-$(VERSION)/components"
cp -R LICENSE Makefile README config.mk config.def.h \
arg.h slstatus.c $(COM:=.c) $(REQ:=.c) $(REQ:=.h) \
slstatus.1 "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"