mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-17 12:07:38 +01:00
483648e372
Add custom function hooks to jsonproc Add jsonproc to build_tools.sh Newer g++
18 lines
274 B
Makefile
Executable File
18 lines
274 B
Makefile
Executable File
CXX := g++
|
|
|
|
CXXFLAGS := -Wall -std=c++11 -O2
|
|
|
|
INCLUDES := -I .
|
|
|
|
SRCS := jsonproc.cpp
|
|
|
|
HEADERS := jsonproc.h inja.hpp nlohmann/json.hpp
|
|
|
|
.PHONY: clean
|
|
|
|
jsonproc: $(SRCS) $(HEADERS)
|
|
$(CXX) $(CXXFLAGS) $(INCLUDES) $(SRCS) -o $@ $(LDFLAGS)
|
|
|
|
clean:
|
|
$(RM) jsonproc jsonproc.exe
|