advent-of-code

Perserverance, or the lack thereof

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

Makefile (214B)

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