diff options
author | kr3nshaw <20672068+kr3nshaw@users.noreply.github.com> | 2020-06-08 20:36:34 +1000 |
---|---|---|
committer | kr3nshaw <20672068+kr3nshaw@users.noreply.github.com> | 2020-06-08 20:36:34 +1000 |
commit | a7b3fd6036a4a629cc25fbcf21fb655aac90a2bc (patch) | |
tree | c5dfcead82c79675e810ffd76e1ecf68c0c62f47 | |
parent | c5a0d49cbae5047021e4f036366cf87ba97da566 (diff) |
Amended knarc makefile so as not to conflict with devkitARM
-rw-r--r-- | tools/knarc/Makefile | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/tools/knarc/Makefile b/tools/knarc/Makefile index 336fad3f..f8f263d2 100644 --- a/tools/knarc/Makefile +++ b/tools/knarc/Makefile @@ -1,17 +1,10 @@ -CXX ?= g++-9 - -CXXFLAGS := -std=c++17 -O2 -Wall -Wno-switch -lstdc++fs - -SRCS := Source.cpp Narc.cpp -HEADERS := Narc.h - .PHONY: all clean all: knarc @: -knarc: $(SRCS) $(HEADERS) - $(CXX) $(SRCS) -o $@ $(LDFLAGS) $(CXXFLAGS) +knarc: Source.cpp Narc.cpp Narc.h + g++-9 Source.cpp Narc.cpp -o $@ -std=c++17 -O2 -Wall -Wno-switch -lstdc++fs clean: $(RM) knarc knarc.exe |