Initial setup and day1
This commit is contained in:
commit
a70e623f2a
8 changed files with 432 additions and 0 deletions
10
2020/Makefile
Normal file
10
2020/Makefile
Normal file
|
@ -0,0 +1,10 @@
|
|||
day1.out: out/types.o day1.cpp day1.input
|
||||
g++ $(flags) day1.cpp out/types.o -o $@
|
||||
|
||||
out/types.o: types.hpp types.cpp
|
||||
mkdir -p out/
|
||||
g++ $(flags) -c types.cpp -o $@
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
rm out/* day*.out
|
Loading…
Add table
Add a link
Reference in a new issue