summaryrefslogtreecommitdiff
path: root/config.mk
diff options
context:
space:
mode:
authorzachir <zachir@librem.one>2023-02-20 01:09:42 -0600
committerzachir <zachir@librem.one>2023-02-20 01:09:42 -0600
commitf5878b3ffbef39b69f93f4c18549640372f87077 (patch)
treed421e4824bdbf66ebf89a19b2b26b279f4c6b0e8 /config.mk
parent3f9b30ef78af7c80e55d2e9f111212a432544e2e (diff)
initialize branch at st 0.9 upstream
Diffstat (limited to 'config.mk')
-rw-r--r--config.mk12
1 files changed, 5 insertions, 7 deletions
diff --git a/config.mk b/config.mk
index 201a144..1e306f8 100644
--- a/config.mk
+++ b/config.mk
@@ -1,5 +1,5 @@
# st version
-VERSION = 0.8.5
+VERSION = 0.9
# Customize below to fit your system
@@ -15,15 +15,12 @@ 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) --cflags freetype2`
+LIBS = -L$(X11LIB) -lm -lrt -lX11 -lutil -lXft \
`$(PKG_CONFIG) --libs fontconfig` \
- `$(PKG_CONFIG) --libs freetype2` \
- `$(PKG_CONFIG) --libs harfbuzz`
+ `$(PKG_CONFIG) --libs freetype2`
# flags
-CFLAGS= -Wall -pedantic -O3 -march=native -std=c99
STCPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600
STCFLAGS = $(INCS) $(STCPPFLAGS) $(CPPFLAGS) $(CFLAGS)
STLDFLAGS = $(LIBS) $(LDFLAGS)
@@ -33,6 +30,7 @@ STLDFLAGS = $(LIBS) $(LDFLAGS)
#LIBS = -L$(X11LIB) -lm -lX11 -lutil -lXft \
# `$(PKG_CONFIG) --libs fontconfig` \
# `$(PKG_CONFIG) --libs freetype2`
+#MANPREFIX = ${PREFIX}/man
# compiler and linker
# CC = c99