This commit is contained in:
vxclutch
2026-05-26 17:08:11 -04:00
parent 688f70add0
commit b5ba691d33
25 changed files with 21666 additions and 67 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