X-Git-Url: https://git.xinqibao.xyz/slstatus.git/blobdiff_plain/94ea78f0fe394fc6b42dc0d83be9abf3d1c77ea0..f386a03a20ca3de30f761dba52d9d7196e3544e4:/config.mk diff --git a/config.mk b/config.mk index 75ba482..9d26bc3 100644 --- a/config.mk +++ b/config.mk @@ -1,30 +1,21 @@ -NAME = slstatus -VERSION = 1.0 +# slstatus version +VERSION = 0 -# Customize below to fit your system +# customize below to fit your system # paths PREFIX = /usr/local -MANPREFIX = ${PREFIX}/share/man +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}\" -CFLAGS = -g -std=c99 -pedantic -Wall -O0 ${INCS} ${CPPFLAGS} -#CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} -LDFLAGS = -g ${LIBS} -#LDFLAGS = -s ${LIBS} - -# Solaris -#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" -#LDFLAGS = ${LIBS} +CPPFLAGS = -I$(X11INC) -D_DEFAULT_SOURCE +CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os +LDFLAGS = -L$(X11LIB) -s +# OpenBSD: add -lossaudio +LDLIBS = -lX11 # compiler and linker CC = cc -