Skip to content

Commit

Permalink
Update makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
BitSails authored Jan 26, 2019
1 parent 74d3b52 commit 8846699
Showing 1 changed file with 3 additions and 12 deletions.
15 changes: 3 additions & 12 deletions makefile
Original file line number Diff line number Diff line change
@@ -1,18 +1,9 @@
#https://www.youtube.com/watch?v=aw9wHbFTnAQ

# makefile version 1.0.09.18.2018

CFLAGS=-std=c++14 -c -g -Wall

# makefile version 1.0.01.25.2019

hellogit: hellogit.o
@printf "\033[36mLinking \"hellogit\"...\n\033[0m"
g++ hellogit.o -o hellogit.out
@printf "\n\033[34mRun by typing 'make run'\n\n\033[0m"

hellogit.o: hellogit.cpp
@printf "\033[36mCompiling \"hellogit\"...\n\033[0m"
g++ $(CFLAGS) hellogit.cpp
all:
g++ -std=c++14 -g -Wall *.cpp -o hellogit.out

# ...................................................................

Expand Down

0 comments on commit 8846699

Please sign in to comment.