Advent-of-Code/2022/6/Makefile

7 lines
133 B
Makefile

all: a.out b.out
a.out: main.cpp
clang++ -std=c++2b -g -O0 main.cpp
b.out: main2.cpp
clang++ -std=c++2b -g -O0 main2.cpp -o b.out