summaryrefslogtreecommitdiff
path: root/Makefile
blob: 9e1d0d5b16beee8d230b26557fb7530371e88011 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
# See LICENSE file for copyright and license details.

include config.mk

all: slstatus

slstatus: slstatus.c config.h config.mk
	${CC} ${CFLAGS} -o $@ slstatus.c ${LDFLAGS}

config.h:
	cp config.def.h $@

clean:
	rm -f slstatus

install: all
	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

uninstall:
	rm -f ${DESTDIR}${PREFIX}/bin/slstatus
	rm -f ${DESTDIR}${MANPREFIX}/man1/slstatus.1

.PHONY: all clean install uninstall