diff options
| author | red031000 <rubenru09@aol.com> | 2020-06-07 21:00:20 +0100 |
|---|---|---|
| committer | red031000 <rubenru09@aol.com> | 2020-06-07 21:00:20 +0100 |
| commit | 5f9e55a24bd8430ed6384c737ed29f949f3c8a6c (patch) | |
| tree | 20c57f7d5282f0c3d272b47c4647742581258110 /tools/knarc/Makefile | |
| parent | fce2c89d6edb6d8e6d8fbc6926b1b0784a07c984 (diff) | |
| parent | c5a0d49cbae5047021e4f036366cf87ba97da566 (diff) | |
Merge branch 'master' of https://github.com/martmists/pokediamond
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 |
