X-Git-Url: https://git.xinqibao.xyz/slstatus.git/blobdiff_plain/046e273a7eb270f4b275c02546e4547d8cfc2a82..f62d626d9b7958362fcf3605bcd2280295c0a30c:/config.mk?ds=sidebyside diff --git a/config.mk b/config.mk index 4888003..c120e76 100644 --- a/config.mk +++ b/config.mk @@ -1,30 +1,20 @@ -NAME = slstatus -VERSION = 1.0 +# See LICENSE file for copyright and license details. -# Customize below to fit your system +VERSION = 3.0 -# 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 = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} -#CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} -LDFLAGS = -g ${LIBS} -#LDFLAGS = -s ${LIBS} +# -Wno-unused-function for routines not activated by user +CFLAGS = -std=c99 -pedantic -Wno-unused-function -Wall -Wextra -Os ${INCS} ${CPPFLAGS} +LDFLAGS = ${LIBS} -# Solaris -#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" -#LDFLAGS = ${LIBS} - -# compiler and linker CC = cc - +LD = ld