diff options
author | ZachIR <zachir@librem.one> | 2025-07-08 21:48:39 -0500 |
---|---|---|
committer | ZachIR <zachir@librem.one> | 2025-07-08 21:48:39 -0500 |
commit | cbffff166748e7dada4b66ed1c4f10f495eefa97 (patch) | |
tree | e5b15a872bb79b4beb56c8177b229c58b356bdb5 /Makefile | |
parent | d79cc4cea16572f7f80c3842031406172630f697 (diff) |
Add in st-graphics repo
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -4,7 +4,7 @@ include config.mk -SRC = st.c x.c hb.c +SRC = st.c x.c rowcolumn_diacritics_helpers.c graphics.c boxdraw.c hb.c OBJ = $(SRC:.c=.o) all: st @@ -15,8 +15,10 @@ 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 hb.h +st.o: config.h st.h win.h graphics.h +x.o: arg.h config.h st.h win.h graphics.h hb.h +graphics.c: graphics.h khash.h kvec.h st.h +boxdraw.o: config.h st.h boxdraw_data.h hb.o: st.h $(OBJ): config.h config.mk |