diff options
| author | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-04-08 23:39:10 +0200 |
|---|---|---|
| committer | Nathan Reiner <nathan@nathanreiner.xyz> | 2023-04-08 23:39:10 +0200 |
| commit | c301a55b88a131f081a844552327c0ab85db017c (patch) | |
| tree | ceff7f5058027bd260d6fe91c9ab705e40688421 /Makefile | |
| parent | fe84e69990a9f156a818eb1547384812bc9db41c (diff) | |
connect st term api
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -1,7 +1,8 @@ +VERSION = 0.0.0 PROTOCOLS = xdg-shell-client-protocol.c -SRC = ${PROTOCOLS} swt.c drw.c util.c wayland.c +SRC = ${PROTOCOLS} swt.c drw.c util.c wayland.c term.c OBJ = ${SRC:.c=.o} -CFLAGS = -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/harfbuzz -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-4 -pthread +CFLAGS = -I/usr/include/freetype2 -I/usr/include/libpng16 -I/usr/include/harfbuzz -I/usr/include/glib-2.0 -I/usr/lib/glib-2.0/include -I/usr/include/sysprof-4 -pthread -DVERSION=\"${VERSION}\" -D_XOPEN_SOURCE=600 LIBS = -lfreetype -lwayland-client -lrt -lxkbcommon -lm -lgrapheme all: swt |