diff options
author | Federico Igne <git@federicoigne.com> | 2020-05-23 11:29:02 +0100 |
---|---|---|
committer | Federico Igne <git@federicoigne.com> | 2020-05-23 11:29:02 +0100 |
commit | 81df9b428bd0330af98db9c69ffe69b0441e00fd (patch) | |
tree | 58773d60020d006a841f18b80578d9e763e839e9 /Makefile | |
parent | dd31d0207ba2acebfb65400e916a624a57c638a4 (diff) | |
download | st-81df9b428bd0330af98db9c69ffe69b0441e00fd.tar.gz st-81df9b428bd0330af98db9c69ffe69b0441e00fd.zip |
Apply BoxDraw patch
Homepage link: https://st.suckless.org/patches/boxdraw/
Patch link: https://st.suckless.org/patches/boxdraw/st-boxdraw_v2-0.8.3.diff
Additional info: patch applied manually.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -4,7 +4,7 @@ | |||
4 | 4 | ||
5 | include config.mk | 5 | include config.mk |
6 | 6 | ||
7 | SRC = st.c x.c | 7 | SRC = st.c x.c boxdraw.c |
8 | OBJ = $(SRC:.c=.o) | 8 | OBJ = $(SRC:.c=.o) |
9 | 9 | ||
10 | all: options st | 10 | all: options st |
@@ -23,6 +23,7 @@ config.h: | |||
23 | 23 | ||
24 | st.o: config.h st.h win.h | 24 | st.o: config.h st.h win.h |
25 | x.o: arg.h config.h st.h win.h | 25 | x.o: arg.h config.h st.h win.h |
26 | boxdraw.o: config.h st.h boxdraw_data.h | ||
26 | 27 | ||
27 | $(OBJ): config.h config.mk | 28 | $(OBJ): config.h config.mk |
28 | 29 | ||