diff options
author | PlatinumMaster <PlatinumMaster@users.noreply.github.com> | 2020-06-07 13:05:55 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-07 13:05:55 -0400 |
commit | 0eb4920e8ee15cdc5bc42fbbb7927d34e3014cf1 (patch) | |
tree | e8f5ca71b142af125f722b7889e9dd080be1aa7e | |
parent | d419d521b3d0c65aef90299ef1a183382a055ed4 (diff) |
Update Makefile to support g++8.
-rw-r--r-- | tools/knarc/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/knarc/Makefile b/tools/knarc/Makefile index a466912c..da52e871 100644 --- a/tools/knarc/Makefile +++ b/tools/knarc/Makefile @@ -1,7 +1,7 @@ all: knarc knarc: Source.cpp Narc.cpp - g++ -std=c++17 -o knarc Source.cpp Narc.cpp + g++8 -std=c++17 -o knarc Source.cpp Narc.cpp clean: - rm knarc + rm knarc
\ No newline at end of file |