summaryrefslogtreecommitdiff
path: root/dwm/Makefile
diff options
context:
space:
mode:
authorSoominIm <111330163+SoominIm@users.noreply.github.com>2024-03-02 14:45:42 -0600
committerSoominIm <111330163+SoominIm@users.noreply.github.com>2024-03-02 14:45:42 -0600
commit5017790af4d8d7d9d7c9b41044a34ed015bc570e (patch)
tree0c8adc7f95a396ac25c0e57b528f8a3f38b9ec16 /dwm/Makefile
Initial commit
Diffstat (limited to 'dwm/Makefile')
-rw-r--r--dwm/Makefile50
1 files changed, 50 insertions, 0 deletions
diff --git a/dwm/Makefile b/dwm/Makefile
new file mode 100644
index 0000000..11a49c4
--- /dev/null
+++ b/dwm/Makefile
@@ -0,0 +1,50 @@
+# dwm - dynamic window manager
+# See LICENSE file for copyright and license details.
+
+include config.mk
+
+SRC = drw.c dwm.c util.c
+OBJ = ${SRC:.c=.o}
+
+all: options dwm
+
+options:
+ @echo dwm build options:
+ @echo "CFLAGS = ${CFLAGS}"
+ @echo "LDFLAGS = ${LDFLAGS}"
+ @echo "CC = ${CC}"
+
+.c.o:
+ ${CC} -c ${CFLAGS} $<
+
+${OBJ}: config.h config.mk
+
+dwm: ${OBJ}
+ ${CC} -o $@ ${OBJ} ${LDFLAGS}
+
+clean:
+ rm -f dwm ${OBJ} dwm-${VERSION}.tar.gz *.orig *.rej
+
+dist: clean
+ mkdir -p dwm-${VERSION}
+ cp -R LICENSE Makefile README config.mk\
+ dwm.1 drw.h util.h ${SRC} transient.c dwm-${VERSION}
+ tar -cf dwm-${VERSION}.tar dwm-${VERSION}
+ gzip dwm-${VERSION}.tar
+ rm -rf dwm-${VERSION}
+
+install: all
+ mkdir -p ${DESTDIR}${PREFIX}/bin
+ install -Dm755 ./dwm ${DESTDIR}${PREFIX}/bin
+ mkdir -p ${DESTDIR}${MANPREFIX}/man1
+ sed "s/VERSION/${VERSION}/g" < dwm.1 > ${DESTDIR}${MANPREFIX}/man1/dwm.1
+ chmod 644 ${DESTDIR}${MANPREFIX}/man1/dwm.1
+ mkdir -p ${DESTDIR}${PREFIX}/share/dwm
+ install -Dm644 ./larbs.mom ${DESTDIR}${PREFIX}/share/dwm
+
+uninstall:
+ rm -f ${DESTDIR}${PREFIX}/bin/dwm\
+ ${DESTDIR}${PREFIX}/share/dwm/larbs.mom\
+ ${DESTDIR}${MANPREFIX}/man1/dwm.1
+
+.PHONY: all options clean dist install uninstall