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-02-cpp day-02-rust day-02.jl
    5 	julia day-02.jl
    6 	./day-02-cpp
    7 	./day-02-rust
    8 
    9 day-02-cpp: day-02.cc
   10 	$(CC) $(CCFLAGS) $^ -o $@
   11 
   12 day-02-rust: day-02.rs
   13 	rustc $^ -o $@