Skip to content

Commit

Permalink
day18
Browse files Browse the repository at this point in the history
  • Loading branch information
jakub-homola committed Dec 18, 2023
1 parent 96d8a08 commit 1a52bd4
Show file tree
Hide file tree
Showing 5 changed files with 873 additions and 0 deletions.
15 changes: 15 additions & 0 deletions day18/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

.PHONY: compile clean run

compile: task1.x task2.x

run: compile
./task1.x < input.txt
./task2.x < input.txt

clean:
rm -f *.x

%.x: %.cpp Makefile
g++ -g -O2 $< -o $@

Loading

0 comments on commit 1a52bd4

Please sign in to comment.