aoc/justfile

16 lines
408 B
Makefile
Raw Normal View History

2022-12-08 16:04:08 +01:00
set windows-shell := ["cmd.exe", "/c"]
2022-12-08 04:25:52 +01:00
#list all options
default:
just --list
#list total lines of c++ code
lines:
wc -l */*.cpp
#2022 day 1 ~ both parts
y22-d1:
g++ -o ./2022/day-1 ./2022/day-1.cpp && ./2022/day-1
#2022 day 2 ~ both parts
y22-d2:
2022-12-08 05:24:47 +01:00
g++ -o ./2022/day-2 ./2022/day-2.cpp && ./2022/day-2
#2022 day 3 ~ both parts
y22-d3:
g++ -o ./2022/day-3 ./2022/day-3.cpp && ./2022/day-3