aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSam Chudnick <sam@chudnick.com>2021-11-07 06:43:28 -0500
committerSam Chudnick <sam@chudnick.com>2021-11-07 06:43:28 -0500
commit28e9605edf57dd92f278c9ac5a2757532b2cb9e0 (patch)
tree86cb42771c52abd94848ecdd43e697b97ed0118d /Makefile
initial commit
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile51
1 files changed, 51 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..77bcbc0
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,51 @@
1# dwm - dynamic window manager
2# See LICENSE file for copyright and license details.
3
4include config.mk
5
6SRC = drw.c dwm.c util.c
7OBJ = ${SRC:.c=.o}
8
9all: options dwm
10
11options:
12 @echo dwm build options:
13 @echo "CFLAGS = ${CFLAGS}"
14 @echo "LDFLAGS = ${LDFLAGS}"
15 @echo "CC = ${CC}"
16
17.c.o:
18 ${CC} -c ${CFLAGS} $<
19
20${OBJ}: config.h config.mk
21
22config.h:
23 cp config.def.h $@
24
25dwm: ${OBJ}
26 ${CC} -o $@ ${OBJ} ${LDFLAGS}
27
28clean:
29 rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz
30
31dist: clean
32 mkdir -p dwm-${VERSION}
33 cp -R LICENSE Makefile README config.def.h config.mk\
34 dwm.1 drw.h util.h ${SRC} dwm.png transient.c dwm-${VERSION}
35 tar -cf dwm-${VERSION}.tar dwm-${VERSION}
36 gzip dwm-${VERSION}.tar
37 rm -rf dwm-${VERSION}
38
39install: all
40 mkdir -p ${DESTDIR}${PREFIX}/bin
41 cp -f dwm ${DESTDIR}${PREFIX}/bin
42 chmod 755 ${DESTDIR}${PREFIX}/bin/dwm
43 mkdir -p ${DESTDIR}${MANPREFIX}/man1
44 sed "s/VERSION/${VERSION}/g" < dwm.1 > ${DESTDIR}${MANPREFIX}/man1/dwm.1
45 chmod 644 ${DESTDIR}${MANPREFIX}/man1/dwm.1
46
47uninstall:
48 rm -f ${DESTDIR}${PREFIX}/bin/dwm\
49 ${DESTDIR}${MANPREFIX}/man1/dwm.1
50
51.PHONY: all options clean dist install uninstall