From 9d3c424dea47f6cd92b9bbc364a68747f0752427 Mon Sep 17 00:00:00 2001 From: bakkeby Date: Sun, 26 Jan 2020 16:21:31 +0100 Subject: [PATCH] Moving patches.h to patches.def.h to match that of config --- .gitignore | 1 + Makefile | 5 ++++- patches.h => patches.def.h | 0 3 files changed, 5 insertions(+), 1 deletion(-) rename patches.h => patches.def.h (100%) diff --git a/.gitignore b/.gitignore index 8bed06b..39bef6e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ *.o config.h +patches.h diff --git a/Makefile b/Makefile index a03a95c..f4be9d1 100644 --- a/Makefile +++ b/Makefile @@ -20,7 +20,10 @@ options: config.h: cp config.def.h $@ -$(OBJ): arg.h config.h config.mk drw.h +patches.h: + cp patches.def.h $@ + +$(OBJ): arg.h config.h config.mk drw.h patches.h dmenu: dmenu.o drw.o util.o $(CC) -o $@ dmenu.o drw.o util.o $(LDFLAGS) diff --git a/patches.h b/patches.def.h similarity index 100% rename from patches.h rename to patches.def.h