diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,7 +4,7 @@ | |||
4 | 4 | ||
5 | include config.mk | 5 | include config.mk |
6 | 6 | ||
7 | SRC = st.c x.c boxdraw.c | 7 | SRC = st.c x.c boxdraw.c hb.c |
8 | OBJ = $(SRC:.c=.o) | 8 | OBJ = $(SRC:.c=.o) |
9 | 9 | ||
10 | all: options st | 10 | all: options st |
@@ -22,7 +22,8 @@ config.h: | |||
22 | $(CC) $(STCFLAGS) -c $< | 22 | $(CC) $(STCFLAGS) -c $< |
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 hb.h |
26 | hb.o: st.h | ||
26 | boxdraw.o: config.h st.h boxdraw_data.h | 27 | boxdraw.o: config.h st.h boxdraw_data.h |
27 | 28 | ||
28 | $(OBJ): config.h config.mk | 29 | $(OBJ): config.h config.mk |