commit 188ec2fa1c044d6c0656f7984ebc0f6c519b7ace
parent 352170eec845cb8fdf1c4ae92a9108eb5ebd0509
Author: bakkeby <bakkeby@gmail.com>
Date: Sun, 26 Jan 2020 16:20:06 +0100
Moving patches.h to patches.def.h to match that of config
Diffstat:
3 files changed, 5 insertions(+), 1 deletion(-)
diff --git a/.gitignore b/.gitignore
@@ -1,2 +1,3 @@
*.o
config.h
+patches.h
diff --git a/Makefile b/Makefile
@@ -18,13 +18,16 @@ options:
config.h:
cp config.def.h config.h
+patches.h:
+ cp patches.def.h patches.h
+
.c.o:
$(CC) $(STCFLAGS) -c $<
st.o: config.h st.h win.h
x.o: arg.h config.h st.h win.h
-$(OBJ): config.h config.mk
+$(OBJ): config.h config.mk patches.h
st: $(OBJ)
$(CC) -o $@ $(OBJ) $(STLDFLAGS)
diff --git a/patches.h b/patches.def.h