diff options
author | Kornelije Sajler <xajler@gmail.com> | 2018-04-25 22:15:11 +0200 |
---|---|---|
committer | Kornelije Sajler <xajler@gmail.com> | 2018-04-25 22:15:11 +0200 |
commit | 0ad3d4eddfb0c260791dc3a6383f3a1047c972ab (patch) | |
tree | c81743be2dea80003bd04ba3708c39956d474efb /config.mk | |
parent | efad574780975ee22f2826900ac2a62883b02c40 (diff) |
Updated st 0.8.1. Used new patches, scrollblock and alpha fixed.
Created run-patches.sh, runs all patches on clean st 0.8.1 code.
All old patches remvoed, including trasparency diff.
Not including solarized theme, don't see value of it.
Commented colornames array with color indexs from 0-15, includes index 255, and afterwards bg, fg and cursor, change those for background, foreground and cursor color. Seems better than solarized toggle.
Updated README.
Diffstat (limited to 'config.mk')
-rw-r--r-- | config.mk | 18 |
1 files changed, 9 insertions, 9 deletions
@@ -1,28 +1,28 @@ # st version -VERSION = 0.7 +VERSION = 0.8.1 # Customize below to fit your system # paths PREFIX = /usr/local -MANPREFIX = ${PREFIX}/share/man +MANPREFIX = $(PREFIX)/share/man X11INC = /usr/X11R6/include X11LIB = /usr/X11R6/lib # includes and libs -INCS = -I. -I/usr/include -I${X11INC} \ +INCS = -I$(X11INC) \ `pkg-config --cflags fontconfig` \ `pkg-config --cflags freetype2` -LIBS = -L/usr/lib -lc -L${X11LIB} -lm -lrt -lX11 -lutil -lXext -lXft -lXrender\ - `pkg-config --libs fontconfig` \ +LIBS = -L${X11LIB} -lm -lrt -lX11 -lutil -lXft -lXrender \ + `pkg-config --libs fontconfig` \ `pkg-config --libs freetype2` # flags -CPPFLAGS = -DVERSION=\"${VERSION}\" -D_XOPEN_SOURCE=600 -CFLAGS += -g -std=c99 -pedantic -Wall -Wvariadic-macros -Os ${INCS} ${CPPFLAGS} -LDFLAGS += -g ${LIBS} +CPPFLAGS = -DVERSION=\"$(VERSION)\" -D_XOPEN_SOURCE=600 +STCFLAGS = $(INCS) $(CPPFLAGS) $(CFLAGS) +STLDFLAGS = $(LIBS) $(LDFLAGS) # compiler and linker -# CC = cc +# CC = c99 |