Skip to content

Commit

Permalink
touch up in preparation for AoC
Browse files Browse the repository at this point in the history
  • Loading branch information
devries committed Nov 22, 2023
1 parent 006839e commit a84aa41
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
10 changes: 9 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a84aa41

Please sign in to comment.