From eeade354002415c9fda5542680e6750a7db4fb45 Mon Sep 17 00:00:00 2001 From: Shanti Chellaram Date: Mon, 31 Jan 2022 20:53:33 -0500 Subject: [PATCH] add makefile; fix naming conflicts --- .gitignore | 1 + Makefile | 2 ++ README.md | 6 +++++- wordle.c => terdle.c | 0 4 files changed, 8 insertions(+), 1 deletion(-) create mode 100644 .gitignore create mode 100644 Makefile rename wordle.c => terdle.c (100%) diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..fa60fb9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/terdle diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..17dd2c4 --- /dev/null +++ b/Makefile @@ -0,0 +1,2 @@ +terdle: terdle.c + gcc -std=c99 -o terdle terdle.c diff --git a/README.md b/README.md index 62bb9ea..9eaeefd 100644 --- a/README.md +++ b/README.md @@ -1 +1,5 @@ -Proof that wordle is solvable in 6 moves. +# terdle + +originally attempting to prove that wordle is solvable in 6 moves, + +now just another command-line wordle client diff --git a/wordle.c b/terdle.c similarity index 100% rename from wordle.c rename to terdle.c