X-Git-Url: https://git.xinqibao.xyz/slstatus.git/blobdiff_plain/1654efe1d67d0bec010792e8c6eb64a0f8e88a58..13604963bc589ab9281da03b1f76b8db7e21daa7:/config.mk?ds=sidebyside diff --git a/config.mk b/config.mk index 704558a..36b129a 100644 --- a/config.mk +++ b/config.mk @@ -1,22 +1,18 @@ -NAME = slstatus -VERSION = 1.0 - -# Customize below to fit your system +# See LICENSE file for copyright and license details. 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 +LIBS = -L/usr/lib -lc -L${X11LIB} -lX11 -# flags CPPFLAGS = -DVERSION=\"${VERSION}\" -D_GNU_SOURCE -CFLAGS = -std=c99 -pedantic -Wno-unused-function -Wall -Wextra -O0 ${INCS} ${CPPFLAGS} +# -Wno-unused-function for routines not activated by user +CFLAGS = -std=c99 -pedantic -Wno-unused-function -Wall -Wextra -Os ${INCS} ${CPPFLAGS} LDFLAGS = ${LIBS} -# compiler and linker CC = cc - +LD = ld