diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 51 |
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 | |||
4 | include config.mk | ||
5 | |||
6 | SRC = drw.c dwm.c util.c | ||
7 | OBJ = ${SRC:.c=.o} | ||
8 | |||
9 | all: options dwm | ||
10 | |||
11 | options: | ||
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 | |||
22 | config.h: | ||
23 | cp config.def.h $@ | ||
24 | |||
25 | dwm: ${OBJ} | ||
26 | ${CC} -o $@ ${OBJ} ${LDFLAGS} | ||
27 | |||
28 | clean: | ||
29 | rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz | ||
30 | |||
31 | dist: 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 | |||
39 | install: 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 | |||
47 | uninstall: | ||
48 | rm -f ${DESTDIR}${PREFIX}/bin/dwm\ | ||
49 | ${DESTDIR}${MANPREFIX}/man1/dwm.1 | ||
50 | |||
51 | .PHONY: all options clean dist install uninstall | ||