cowterm/config.mk
Rekketstone a04a1870cc Refreshing and No more blinking cursor
Cursor will now be hollow if you're not focused on the window and the
refreshing of the terminal makes the cursor not freak out + some visual
bugs **should** be fixed. Htop and vim are not going to work still
unfortunately.
2025-01-15 17:54:45 -07:00

20 lines
449 B
Makefile

# cowterm - a simple terminal emulator
# paths
PREFIX = /usr/local/
# includes and libs
#FREETYPELIBS = -lfontconfig -lXft
#FREETYPEINC = /usr/include/freetype2
INCS = -I/usr/X11R6/include -I${FREETYPEINC}
LIBS = -L/usr/X11R6/lib -lX11 -lutil ${FREETYPELIBS}
# flags
CPPFLAGS = -D_DEFAULT_SOURCE -D_BSD_SOURCE -D_XOPEN_SOURCE=700
CFLAGS = -std=c99 -pedantic -Wall -Wextra -Os ${INCS} ${CPPFLAGS}
LDFLAGS = ${LIBS}
# compiler and linker
CC = cc