See last commit

This commit is contained in:
cannoli-fruit 2026-07-14 01:51:57 -04:00
commit 1800c49211
2 changed files with 7 additions and 3 deletions

View file

@ -4,7 +4,7 @@
include config.mk
SRC = st.c x.c
SRC = st.c x.c rowcolumn_diacritics_helpers.c graphics.c
OBJ = $(SRC:.c=.o)
all: st
@ -15,8 +15,9 @@ config.h:
.c.o:
$(CC) $(STCFLAGS) -c $<
st.o: config.h st.h win.h
x.o: arg.h config.h st.h win.h
st.o: config.h st.h win.h graphics.h
x.o: arg.h config.h st.h win.h graphics.h
graphics.c: graphics.h khash.h kvec.h st.h
$(OBJ): config.h config.mk

3
win.h
View file

@ -39,3 +39,6 @@ void xsetpointermotion(int);
void xsetsel(char *);
int xstartdraw(void);
void xximspot(int, int);
void xstartimagedraw(int *dirty, int rows);
void xfinishimagedraw();