remove run scripts, add makefiles

This commit is contained in:
2023-12-15 12:32:39 +00:00
parent 6a65b04ee8
commit b2819a20dd
23 changed files with 110 additions and 60 deletions

10
day-1/makefile Normal file
View File

@@ -0,0 +1,10 @@
TEST="test.txt"
INPUT="input.txt"
test:
cat $(TEST) | go run .
run:
cat $(INPUT) | go run .
all: test