-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
60 lines (47 loc) · 1.49 KB
/
Makefile
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
# dwm - dynamic window manager
# See LICENSE file for copyright and license details.
include config.mk
SRC = dwm.c
OBJ = ${SRC:.c=.o}
all: options dwm
options:
@echo [info] dwm build options:
@echo " CFLAGS = ${CFLAGS}"
@echo " LDFLAGS = ${LDFLAGS}"
@echo " CC = ${CC}"
.c.o:
@echo " CC $<"
@${CC} -c ${CFLAGS} $<
${OBJ}: config.h config.mk
config.h:
@echo :: Creating $@ from config.def.h
@cp config.def.h $@
dwm: ${OBJ}
@echo " CC -o $@"
@${CC} -o $@ ${OBJ} ${LDFLAGS}
clean:
@echo :: Cleaning...
@rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz config.h
dist: clean
@echo :: Creating dist tarball...
@mkdir -p dwm-${VERSION}
@cp -R LICENSE Makefile README.md config.def.h config.mk \
dwm.1 ${SRC} dwm-${VERSION}
@tar -cf dwm-${VERSION}.tar dwm-${VERSION}
@gzip dwm-${VERSION}.tar
@rm -rf dwm-${VERSION}
install: all
@echo :: Installing executable file to ${DESTDIR}${PREFIX}/bin
@mkdir -p ${DESTDIR}${PREFIX}/bin
@cp -f dwm ${DESTDIR}${PREFIX}/bin
@chmod 755 ${DESTDIR}${PREFIX}/bin/dwm
@echo :: Installing manual page to ${DESTDIR}${MANPREFIX}/man1
@mkdir -p ${DESTDIR}${MANPREFIX}/man1
@sed "s/VERSION/${VERSION}/g" < dwm.1 > ${DESTDIR}${MANPREFIX}/man1/dwm.1
@chmod 644 ${DESTDIR}${MANPREFIX}/man1/dwm.1
uninstall:
@echo :: Removing executable file from ${DESTDIR}${PREFIX}/bin
@rm -f ${DESTDIR}${PREFIX}/bin/dwm
@echo :: Removing manual page from ${DESTDIR}${MANPREFIX}/man1
@rm -f ${DESTDIR}${MANPREFIX}/man1/dwm.1
.PHONY: all options clean dist install uninstall