aoc

My solutions for the Advent of Code
git clone https://git.tronto.net/aoc
Download | Log | Files | Refs | README

Makefile (120B)


      1 CC=g++ -std=c++20 -g -Wall
      2 
      3 a:
      4 	${CC} -o a.out day20a.cpp
      5 	./a.out
      6 
      7 b:
      8 	${CC} -o b.out day20b.cpp
      9 	./b.out
     10 
     11 .PHONY: a b