mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
16 lines
223 B
Makefile
16 lines
223 B
Makefile
CXX := g++
|
|
|
|
CXXFLAGS := -Wall -std=c++11 -O2
|
|
|
|
SRCS := json11.cpp mapjson.cpp
|
|
|
|
HEADERS := mapjson.h
|
|
|
|
.PHONY: clean
|
|
|
|
mapjson: $(SRCS) $(HEADERS)
|
|
$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)
|
|
|
|
clean:
|
|
$(RM) mapjson mapjson.exe
|