diff options
| author | Nikita Langer <nikitalanger@icloud.com> | 2026-04-06 22:11:14 +0200 |
|---|---|---|
| committer | Nikita Langer <nikitalanger@icloud.com> | 2026-04-06 22:11:14 +0200 |
| commit | c413233d3431041a4a3021837113702408991a83 (patch) | |
| tree | c5687396c00fbb78d3639d960c8ee67c97b5b4ac /config.mk | |
| download | slstatus-c413233d3431041a4a3021837113702408991a83.tar.gz slstatus-c413233d3431041a4a3021837113702408991a83.tar.bz2 slstatus-c413233d3431041a4a3021837113702408991a83.tar.xz slstatus-c413233d3431041a4a3021837113702408991a83.zip | |
initial commit
Diffstat (limited to 'config.mk')
| -rw-r--r-- | config.mk | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/config.mk b/config.mk new file mode 100644 index 0000000..6aece07 --- /dev/null +++ b/config.mk @@ -0,0 +1,26 @@ +# laptop / komputer + +include platform.mk + +# slstatus version +VERSION = 1.1 + +# customize below to fit your system + +# paths +PREFIX = /usr/local +MANPREFIX = $(PREFIX)/share/man + +X11INC = /usr/X11R6/include +X11LIB = /usr/X11R6/lib + +# flags +CPPFLAGS = -I$(X11INC) -D_DEFAULT_SOURCE -DVERSION=\"${VERSION}\" $(MYFLAGS) +CFLAGS = -std=c99 -pedantic -Wall -Wextra -Wno-unused-parameter -Os +LDFLAGS = -L$(X11LIB) -s +# OpenBSD: add -lsndio +# FreeBSD: add -lkvm -lsndio +LDLIBS = -lX11 + +# compiler and linker +CC = cc |
