X-Git-Url: https://git.xinqibao.xyz/slstatus.git/blobdiff_plain/f9748dcca37f1f573fdbcb785646b95fe4626e4f..cfa0d9e8feacd6a314ac443716c0c2496b9a1462:/config.mk

diff --git a/config.mk b/config.mk
index cdb9656..bb6b8e8 100644
--- a/config.mk
+++ b/config.mk
@@ -1,30 +1,19 @@
-NAME = slstatus
-VERSION = 1.0
+VERSION = 2.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 -Os ${INCS} ${CPPFLAGS}
 LDFLAGS = ${LIBS}
-#LDFLAGS = -s ${LIBS}
-
-# Solaris
-#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
-#LDFLAGS = ${LIBS}
 
-# compiler and linker
 CC = cc
+LD = ld