# tabbed version VERSION = 0.6 # Customize below to fit your system # paths PREFIX = /usr/local MANPREFIX = ${PREFIX}/share/man # Patched Xft with support for coloured emojis # https://github.com/uditkarode/libxft-bgra XftINC = /usr/local/include XftLIB = /usr/local/lib X11INC = /usr/include X11LIB = /usr/lib # freetype FREETYPELIBS = -lfontconfig -lXft FREETYPEINC = /usr/include/freetype2 # OpenBSD (uncomment) #FREETYPEINC = ${X11INC}/freetype2 # includes and libs INCS = -I. -I$(XftINC) -I$(X11INC) -I${FREETYPEINC} LIBS = -lc -L$(XftLIB) -L${X11LIB} -lX11 ${FREETYPELIBS} # flags CPPFLAGS = -DVERSION=\"${VERSION}\" -D_DEFAULT_SOURCE CFLAGS = -std=c99 -pedantic -Wall -Os ${INCS} ${CPPFLAGS} LDFLAGS = -Wl,-rpath=$(XftLIB) -s ${LIBS} # Solaris #CFLAGS = -fast ${INCS} -DVERSION=\"${VERSION}\" #LDFLAGS = ${LIBS} # compiler and linker # CC = tcc CC = gcc