From f0c32a90477c20ca8dd38c48889ca77deddc1b8b Mon Sep 17 00:00:00 2001 From: Bruce Hill Date: Mon, 30 Sep 2019 15:57:58 -0700 Subject: [PATCH] Ditching the whole config.def.h paradigm in favor of just having a single config.h file. It's mostly not used very much anyways now that the startup commands and key bindings are in their own files. --- Makefile | 3 --- config.def.h => config.h | 0 2 files changed, 3 deletions(-) rename config.def.h => config.h (100%) diff --git a/Makefile b/Makefile index 2d46459..31a2525 100644 --- a/Makefile +++ b/Makefile @@ -57,9 +57,6 @@ all: $(NAME) clean: rm -f $(NAME) -config.h: - cp config.def.h config.h - $(NAME): $(NAME).c bterm.h config.h $(CC) $(NAME).c $(CFLAGS) $(CWARN) $(G) $(O) -o $(NAME) diff --git a/config.def.h b/config.h similarity index 100% rename from config.def.h rename to config.h