Create Makefile

main
DavidDGTNTSchool 2021-06-16 16:22:37 -04:00 committed by GitHub
parent 3afd926ebe
commit c963a3af68
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

6
Makefile Normal file
View File

@ -0,0 +1,6 @@
run:
g++ -o calc main.cpp
./calc
build:
g++ -o calc main.cpp