mirror of
https://github.com/LukeSmithxyz/st.git
synced 2025-04-04 02:31:08 +02:00

-O3 makes faster binaries, I have tested it and used it daily without issues -march=native might also be worth looking at but it might break compatibility if you move your install to another machine Learn more here: https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html
37 lines
972 B
Makefile
37 lines
972 B
Makefile
# st version
|
|
VERSION = 0.8.4
|
|
|
|
# Customize below to fit your system
|
|
|
|
# paths
|
|
PREFIX = /usr/local
|
|
MANPREFIX = $(PREFIX)/share/man
|
|
|
|
X11INC = /usr/X11R6/include
|
|
X11LIB = /usr/X11R6/lib
|
|
|
|
PKG_CONFIG = pkg-config
|
|
|
|
# includes and libs
|
|
INCS = -I$(X11INC) \
|
|
`$(PKG_CONFIG) --cflags fontconfig` \
|
|
`$(PKG_CONFIG) --cflags freetype2` \
|
|
`$(PKG_CONFIG) --cflags harfbuzz`
|
|
LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft -lXrender\
|
|
`$(PKG_CONFIG) --libs fontconfig` \
|
|
`$(PKG_CONFIG) --libs freetype2` \
|
|
`$(PKG_CONFIG) --libs harfbuzz`
|
|
|
|
# flags
|
|
STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 -O3
|
|
STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS) -O3
|
|
STLDFLAGS = $(LIBS) $(LDFLAGS) -O3
|
|
|
|
# OpenBSD:
|
|
#CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 -D_BSD_SOURCE
|
|
#LIBS = -L$(X11LIB) -lm -lX11 -lutil -lXft \
|
|
# `$(PKG_CONFIG) --libs fontconfig` \
|
|
# `$(PKG_CONFIG) --libs freetype2`
|
|
|
|
# compiler and linker
|
|
# CC = c99
|