commit b8b496f21325df6f92c225e6ff99d6554cc0bce8
parent 2243c8b2f366f8b67c3ebc724f51b25d854e6830
Author: robert <robertrussell.72001@gmail.com>
Date: Mon, 7 Jun 2021 15:00:57 -0700
Add util.c to Makefile
Diffstat:
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/Makefile b/Makefile
@@ -4,7 +4,7 @@
include config.mk
-SRC = st.c x.c config.c
+SRC = st.c x.c config.c util.c
OBJ = $(SRC:.c=.o)
all: options st
@@ -26,6 +26,7 @@ config.h:
st.o: util.h config.h st.h win.h
x.o: arg.h util.h config.h st.h win.h
config.o: util.h config.h st.h win.h
+util.o: util.h config.h
$(OBJ): config.mk