projects
/
suckless
/
slstatus.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
cfa0d9e
)
config.mk comment about -Wno-unused-functions
author
Aaron Marcher
<info@nulltime.net>
Sun, 18 Sep 2016 15:22:12 +0000
(17:22 +0200)
committer
Aaron Marcher (drkhsh)
<info@nulltime.net>
Sun, 18 Sep 2016 15:22:12 +0000
(17:22 +0200)
config.mk
patch
|
blob
|
history
diff --git
a/config.mk
b/config.mk
index bb6b8e835b562ac7c164f6220deef4bbdf2596eb..75463dfdcbf6ee15d205ebedb022a8006fe2fc40 100644
(file)
--- a/
config.mk
+++ b/
config.mk
@@
-1,3
+1,5
@@
+# See LICENSE file for copyright and license details.
+
VERSION = 2.0
PREFIX = /usr/local
@@
-9,11
+11,10
@@
X11LIB = /usr/X11R6/lib
INCS = -I. -I/usr/include -I${X11INC}
LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -lasound
-# flags
CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE
+# -Wno-unused-function for routines not activated by user
CFLAGS = -std=c99 -pedantic -Wno-unused-function -Wall -Wextra -Os ${INCS} ${CPPFLAGS}
LDFLAGS = ${LIBS}
CC = cc
LD = ld
-