From a84aa41b1909a33bbdb0a74f3f4fa5651c6cea6a Mon Sep 17 00:00:00 2001 From: Christopher De Vries Date: Wed, 22 Nov 2023 10:16:16 -0500 Subject: [PATCH] touch up in preparation for AoC --- Makefile | 4 ++-- README.md | 10 +++++++++- 2 files changed, 11 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index ecab786..9284b74 100644 --- a/Makefile +++ b/Makefile @@ -22,8 +22,8 @@ aoc_run: main.go run.go build: aoc_run ## Build binary executable aoc_run clean: ## Clean run.go and aoc_run - rm run.go || true - rm aoc_run || true + - rm run.go + - rm aoc_run help: ## Show this help @echo "These are the make commands for the solutions to this Advent of Code repository.\n" diff --git a/README.md b/README.md index dedf63c..e485a6e 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,15 @@ You can run all the days with the command: make runall ``` -Finally, you can do tests with the command: +You can build a binary called `aoc_run` by using the + +``` +make build +``` + +command. + +Finally, you can run your tests with the command: ``` make test