swim.git
config.mk
# swim - window manager
# Copyright (C) 2022-2023 ArcNyxx
# see LICENCE file for licensing information
VERSION = 7.0.0
PREFIX = /usr/local
MANPREFIX = $(PREFIX)/share/man
WPROFILE = -Wall -Wextra -Wstrict-prototypes -Wmissing-declarations -Wshadow \
-Wswitch-default -Wunreachable-code -Wcast-align -Wpointer-arith -Wcast-qual \
-Wbad-function-cast -Winline -Wundef -Wwrite-strings -Wfloat-equal -Wpedantic \
-Wno-unused-parameter
INC = -I/usr/include/freetype2
STD = -D_DEFAULT_SOURCE -D_POSIX_C_SOURCE=200809L
LIB = -lX11 -lXinerama -lXrender -lfreetype -lxkbcommon -lxcb -lxcb-xinerama -lxcb-render -lxcb-render-util -lX11-xcb
CFLAGS = $(WPROFILE) $(INC) $(STD) -Os
LDFLAGS = $(LIB)