mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
21 lines
297 B
Makefile
Executable File
21 lines
297 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: all clean
|
|
|
|
all: jsonproc
|
|
@:
|
|
|
|
jsonproc: $(SRCS) $(HEADERS)
|
|
$(CXX) $(CXXFLAGS) $(INCLUDES) $(SRCS) -o $@ $(LDFLAGS)
|
|
|
|
clean:
|
|
$(RM) jsonproc jsonproc.exe
|