speedwm-personal/host.mk

30 lines
1.1 KiB
Makefile
Raw Permalink Normal View History

2022-10-05 13:00:54 +02:00
# speedwm host options
# See README.md for more options.
# Compiler
2022-10-08 21:47:30 +02:00
CC = tcc
2022-10-05 13:00:54 +02:00
# Paths
# These should be fine for most users but if you use a distribution of GNU/Linux like NixOS or GNU Guix, consider changing this to fit your use case.
# PAGEDIR is only useful if you are using 'make release'.
2022-10-05 13:00:54 +02:00
PREFIX = /usr
2022-11-25 20:44:33 +01:00
MANPREFIX = ${PREFIX}/share/man
PAGEDIR = "/home/anon/Projects/speediegq/projects"
2022-10-05 13:00:54 +02:00
# GNU/Linux support
# If you use GNU/Linux, uncomment these lines (remove the # at the start of the line below)
FREETYPELIBS = -lfontconfig -lXft
FREETYPEINC = /usr/include/freetype2
2022-12-02 11:28:45 +01:00
EXCFLAGS = -Wno-unused-variable -Wno-unused-function -Wno-unused-result -Wno-array-bounds
2023-01-22 13:56:34 +01:00
CFLAGS = -std=c99 -pedantic -Wall -Wno-deprecated-declarations -Ofast -march=native ${INCS} ${CPPFLAGS} ${EXCFLAGS}
LDFLAGS = ${LIBS} -g
2022-10-05 13:00:54 +02:00
# OpenBSD support
# If you use OpenBSD, uncomment these lines. (remove the # at the start of the line below)
#FREETYPEINC = ${X11INC}/freetype2
# Solaris support
# If you use Solaris, uncomment these lines. (remove the # at the start of the line below)
#CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\"
#LDFLAGS = ${LIBS}