mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-12-27 04:04:17 +01:00
18 lines
274 B
Makefile
18 lines
274 B
Makefile
|
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
|