diff options
| author | Cleverking2003 <30466983+Cleverking2003@users.noreply.github.com> | 2020-06-07 22:59:16 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-07 22:59:16 +0300 |
| commit | c5a0d49cbae5047021e4f036366cf87ba97da566 (patch) | |
| tree | 92acdeb79d0deb9c9056275a38e252b001d9dfd4 /tools/knarc/Makefile | |
| parent | c2d3d0fb118d3f9ff14f8f5293f54d0c37421a70 (diff) | |
| parent | 19d0c085f76ac5830e38339248d2f70b58ee54b2 (diff) | |
Merge pull request #144 from kr3nshaw/master
Replaced narccomp with knarc
Diffstat (limited to 'tools/knarc/Makefile')
| -rw-r--r-- | tools/knarc/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tools/knarc/Makefile b/tools/knarc/Makefile new file mode 100644 index 00000000..336fad3f --- /dev/null +++ b/tools/knarc/Makefile @@ -0,0 +1,17 @@ +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) + +clean: + $(RM) knarc knarc.exe |
