advent-of-code

Perserverance, or the lack thereof

git clone git://git.shimmy1996.com/advent-of-code.git

Makefile (139B)

    1 CC := g++
    2 CCFLAGS := --std=c++17 -Wall
    3 
    4 all: day-12-rust day-12.jl
    5 	julia day-12.jl
    6 	./day-12-rust
    7 
    8 day-12-rust: day-12.rs
    9 	rustc $^ -o $@