summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
authorLaslo Hunhold <dev@frign.de>2017-08-10 21:56:06 +0200
committerAaron Marcher <me@drkhsh.at>2017-08-10 22:32:48 +0200
commit4d33c360141952f6071d19c34c0395ad2ff668a1 (patch)
treeea7da3a36922cbf1e84901fc00206520b3a06bcc /config.mk
parent958c34052a13b964f5fd1e748c18796d155af7db (diff)
Remove d- and v-flags
d-flag: There's no need for that, use the &-operator or fork+exec in a non-shell-context. In the latter case you get the PID for free. v-flag: If you want to find out which version of a package is installed, consult your package manager. That's his job.
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/config.mk b/config.mk
index dad0684..f27a0a9 100644
--- a/config.mk
+++ b/config.mk
@@ -11,7 +11,7 @@ X11INC = /usr/X11R6/include
X11LIB = /usr/X11R6/lib
# flags
-CPPFLAGS = -I$(X11INC) -DVERSION=\"$(VERSION)\" -D_DEFAULT_SOURCE
+CPPFLAGS = -I$(X11INC) -D_DEFAULT_SOURCE
CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wno-unused -Os
LDFLAGS = -L$(X11LIB) -s
LDLIBS = -lX11