aoc

Advent of Code Solutions
git clone git://git.alexkarle.com.com/aoc
Log | Files | Refs | README | LICENSE

commit 64daca1e4a4aa03a7d1210f08844c913983fbc8f (patch)
parent 5df4492ab1fdedff494e953fea91a937ecb29a84
Author: Alex Karle <alex@alexkarle.com>
Date:   Sat, 11 Dec 2021 12:42:23 -0500

layout: Add 0 spacing to days for ordered `make run`

Diffstat:
R1/README -> 01/README | 0
R1/a.c -> 01/a.c | 0
R1/a.py -> 01/a.py | 0
R1/b.c -> 01/b.c | 0
R1/b.py -> 01/b.py | 0
R1/input -> 01/input | 0
R2/a.c -> 02/a.c | 0
R2/a.py -> 02/a.py | 0
R2/b.c -> 02/b.c | 0
R2/b.py -> 02/b.py | 0
R2/input -> 02/input | 0
R3/a.c -> 03/a.c | 0
R3/a.py -> 03/a.py | 0
R3/b.py -> 03/b.py | 0
R3/input -> 03/input | 0
R4/a.py -> 04/a.py | 0
R4/b.py -> 04/b.py | 0
R4/common.py -> 04/common.py | 0
R4/input -> 04/input | 0
R5/a.c -> 05/a.c | 0
R5/a.py -> 05/a.py | 0
R5/b.c -> 05/b.c | 0
R5/b.py -> 05/b.py | 0
R5/input -> 05/input | 0
R6/a.c -> 06/a.c | 0
R6/a.py -> 06/a.py | 0
R6/b.c -> 06/b.c | 0
R6/b.py -> 06/b.py | 0
R6/input -> 06/input | 0
R7/a.py -> 07/a.py | 0
R7/b.py -> 07/b.py | 0
R7/input -> 07/input | 0
R8/a.py -> 08/a.py | 0
R8/b.py -> 08/b.py | 0
R8/input -> 08/input | 0
R8/input2 -> 08/input2 | 0
R9/a.py -> 09/a.py | 0
R9/b.py -> 09/b.py | 0
R9/input -> 09/input | 0
R9/input2 -> 09/input2 | 0
MMakefile | 2+-
MREADME.md | 4++--
42 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/1/README b/01/README diff --git a/1/a.c b/01/a.c diff --git a/1/a.py b/01/a.py diff --git a/1/b.c b/01/b.c diff --git a/1/b.py b/01/b.py diff --git a/1/input b/01/input diff --git a/2/a.c b/02/a.c diff --git a/2/a.py b/02/a.py diff --git a/2/b.c b/02/b.c diff --git a/2/b.py b/02/b.py diff --git a/2/input b/02/input diff --git a/3/a.c b/03/a.c diff --git a/3/a.py b/03/a.py diff --git a/3/b.py b/03/b.py diff --git a/3/input b/03/input diff --git a/4/a.py b/04/a.py diff --git a/4/b.py b/04/b.py diff --git a/4/common.py b/04/common.py diff --git a/4/input b/04/input diff --git a/5/a.c b/05/a.c diff --git a/5/a.py b/05/a.py diff --git a/5/b.c b/05/b.c diff --git a/5/b.py b/05/b.py diff --git a/5/input b/05/input diff --git a/6/a.c b/06/a.c diff --git a/6/a.py b/06/a.py diff --git a/6/b.c b/06/b.c diff --git a/6/b.py b/06/b.py diff --git a/6/input b/06/input diff --git a/7/a.py b/07/a.py diff --git a/7/b.py b/07/b.py diff --git a/7/input b/07/input diff --git a/8/a.py b/08/a.py diff --git a/8/b.py b/08/b.py diff --git a/8/input b/08/input diff --git a/8/input2 b/08/input2 diff --git a/9/a.py b/09/a.py diff --git a/9/b.py b/09/b.py diff --git a/9/input b/09/input diff --git a/9/input2 b/09/input2 diff --git a/Makefile b/Makefile @@ -11,7 +11,7 @@ CFLAGS = -g -O2 -Wall -Wpedantic -Wextra DAY = * -TARGETS = 1/a 1/b 2/a 2/b 3/a 5/a 5/b 6/a 6/b +TARGETS = 01/a 01/b 02/a 02/b 03/a 05/a 05/b 06/a 06/b .PHONY: build build: $(TARGETS) diff --git a/README.md b/README.md @@ -18,5 +18,5 @@ solutions via the `build` and `run` targets respectively. `run` takes an optional parameter `DAY` that can limit the solutions run: - make run # runs all - make DAY=1 run # runs day 1 + make run # runs all + make DAY=01 run # runs day 1