summaryrefslogtreecommitdiff
path: root/utils/wmname/config.mk
diff options
context:
space:
mode:
Diffstat (limited to 'utils/wmname/config.mk')
-rw-r--r--utils/wmname/config.mk23
1 files changed, 23 insertions, 0 deletions
diff --git a/utils/wmname/config.mk b/utils/wmname/config.mk
new file mode 100644
index 0000000..282cd94
--- /dev/null
+++ b/utils/wmname/config.mk
@@ -0,0 +1,23 @@
+include ../../config.mk
+# wmname version
+VERSION = 0.1
+
+# Customize below to fit your system
+
+MANPREFIX = ${PREFIX}/share/man
+
+X11INC = /usr/X11R6/include
+X11LIB = /usr/X11R6/lib
+
+# includes and libs
+INCS = -I. -I/usr/include -I${X11INC}
+LIBS = -L/usr/lib -lc -L${X11LIB} -lX11
+
+# flags
+CPPFLAGS = -DVERSION=\"${VERSION}\"
+CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS}
+LDFLAGS = -s ${LIBS}
+
+# compiler and linker
+CC = cc
+LD = ${CC}