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