From b8678957003330c9d14d419842aa13be924fc5da Mon Sep 17 00:00:00 2001 From: DavidDGTNTSchool <58005558+dugo3number3@users.noreply.github.com> Date: Wed, 16 Jun 2021 16:23:04 -0400 Subject: [PATCH] Create Makefile.win --- Makefile.win | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 Makefile.win diff --git a/Makefile.win b/Makefile.win new file mode 100644 index 0000000..fc0e3c4 --- /dev/null +++ b/Makefile.win @@ -0,0 +1,6 @@ +run: + g++ -o calc main.cpp + calc.exe + +build: + g++ -o calc main.cpp