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:
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