diff options
-rw-r--r-- | Makefile | 3 | ||||
-rw-r--r-- | config.openbsd.mk | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -1,7 +1,10 @@ # dwm - dynamic window manager # See LICENSE file for copyright and license details. +UNAME != uname | tr '[:upper:]' '[:lower:]' + include config.mk +sinclude config.${UNAME}.mk SRC = drw.c dwm.c util.c OBJ = ${SRC:.c=.o} diff --git a/config.openbsd.mk b/config.openbsd.mk new file mode 100644 index 0000000..53c757e --- /dev/null +++ b/config.openbsd.mk @@ -0,0 +1 @@ +FREETYPEINC = ${X11INC}/freetype2 |