Skip to content

Commit

Permalink
Makefile error
Browse files Browse the repository at this point in the history
  • Loading branch information
jakedcolbert committed May 4, 2022
1 parent c4fe571 commit 2fa7777
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
ifneq (,$(findstring xterm,${TERM}))
RED := $(shell tput -Txterm setaf 1)
GREEN := $(shell tput -Txterm setaf 2)
RESET := $(shell tput -Txterm sgr0)
RESET := $(shell tput -Txterm sgr0)
else
RED := ""
GREEN := ""
Expand All @@ -14,7 +14,7 @@ endif
# default target
all: project5

# compile the code into an executable called 'project1' using C++ 2011
# compile the code into an executable called 'project5' using C++ 2011
project5: project5.cc province.cc province.h
g++ -std=c++11 -o project5 project5.cc province.cc

Expand Down

0 comments on commit 2fa7777

Please sign in to comment.