Preparation for path tool

This commit is contained in:
nedko 2022-09-13 16:09:18 +03:00
parent 2c9e137ea3
commit 4d46780e2a
3 changed files with 9 additions and 2 deletions

2
.gitignore vendored
View File

@ -1,2 +1,4 @@
polygon
polygon.exe
path
path.exe

View File

@ -1,2 +1,7 @@
all:
g++ main.cpp -o polygon
polygon:
g++ main_poly.cpp -o polygon
path:
g++ main_path.cpp -o path
.PHONY: polygon path