diff options
author | PlatinumMaster <PlatinumMaster@users.noreply.github.com> | 2020-06-07 14:24:18 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-06-07 14:24:18 -0400 |
commit | 24764e2481b702655329fb810ed1ae34067cd4ed (patch) | |
tree | 8cdba5560048deecb4c80e375fa019df5bf15e47 | |
parent | 2efa529b4d644f8a283785b191ccce90a47cd93e (diff) |
Change order of linked files.
-rw-r--r-- | tools/knarc/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/knarc/Makefile b/tools/knarc/Makefile index db803d8b..3f0e6492 100644 --- a/tools/knarc/Makefile +++ b/tools/knarc/Makefile @@ -1,7 +1,7 @@ all: knarc knarc: Source.cpp Narc.cpp - g++ -std=c++17 -lstdc++fs -o knarc Source.cpp Narc.cpp + g++ -std=c++17 -o knarc Source.cpp Narc.cpp -lstdc++fs clean: rm knarc |