diff options
author | Aaron Marcher <info@nulltime.net> | 2016-09-09 19:07:25 +0200 |
---|---|---|
committer | Aaron Marcher (drkhsh) <info@nulltime.net> | 2016-09-09 19:07:25 +0200 |
commit | 6518f41b1f96b2bd684c2e37b5ea0002074cc49b (patch) | |
tree | 799f8f502bbfa4c907c0022b63298f58cfc9ae40 /config.mk | |
parent | 5c86bbd67f25815aa9c6c309697df7aea2d80330 (diff) | |
parent | 9b2dc253485ef3a0ac34a5e781bc2c856bec463d (diff) |
Merge branch 'R41z-master'
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 15 |
1 files changed, 2 insertions, 13 deletions
@@ -1,30 +1,19 @@ -NAME = slstatus VERSION = 1.0 -# Customize below to fit your system - -# paths PREFIX = /usr/local 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 -lasound # flags CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE -CFLAGS = -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} -#CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} +CFLAGS = -std=c99 -pedantic -Wno-unused-function -Wall -Wextra -O0 ${INCS} ${CPPFLAGS} LDFLAGS = ${LIBS} -#LDFLAGS = -s ${LIBS} - -# Solaris -#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" -#LDFLAGS = ${LIBS} -# compiler and linker CC = cc +LD = ld |