This repository was archived by the owner on Apr 12, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
64 lines (47 loc) · 1.42 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
61
62
63
64
# Makefile for 4wm - see LICENSE for license and copyright information
VERSION = alpha
WMNAME = 4wm
PREFIX ?= /usr/local
BINDIR ?= ${PREFIX}/bin
MANPREFIX = ${PREFIX}/share/man
DEBUG = 0
CFLAGS += -std=c11 -pedantic -Wall -Wextra -Os
LDFLAGS += -lxcb -lxcb-randr -lxcb-icccm -lxcb-keysyms -lxcb-ewmh -lX11
EXEC = ${WMNAME}
SRC = ${WMNAME}.c
ifeq (${DEBUG},1)
CFLAGS += -g
endif
all: options ${WMNAME}
options:
@echo ${WMNAME} build options:
@echo "CFLAGS = ${CFLAGS}"
@echo "LDFLAGS = ${LDFLAGS}"
@echo "CC = ${CC}"
.c.o:
@echo CC $<
@${CC} -c ${CFLAGS} $<
${OBJ}: config.h
config.h:
@echo creating $@ from config.def.h
@cp config.def.h $@
${WMNAME}: ${OBJ}
@echo CC -o $@
@${CC} ${CFLAGS} ${LDFLAGS} ${SRC} -o $@ ${OBJ}
clean:
@echo cleaning
@rm -fv ${WMNAME} ${OBJ} ${WMNAME}-${VERSION}.tar.gz
backup_config:
@mkdir -p ~/.config/4wm
@cp config.h ~/.config/4wm/
install: all
@echo installing executable file to ${DESTDIR}${PREFIX}/bin
@install -Dm755 ${WMNAME} ${DESTDIR}${PREFIX}/bin/${WMNAME}
@echo installing manual page to ${DESTDIR}${MANPREFIX}/man.1
@install -Dm644 ${WMNAME}.1 ${DESTDIR}${MANPREFIX}/man1/${WMNAME}.1
uninstall:
@echo removing executable file from ${DESTDIR}${PREFIX}/bin
@rm -f ${DESTDIR}${PREFIX}/bin/${WMNAME}
@echo removing manual page from ${DESTDIR}${MANPREFIX}/man1
@rm -f ${DESTDIR}${MANPREFIX}/man1/${WMNAME}.1
.PHONY: all options clean install uninstall