mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-22 18:14:38 -05:00
* Sync tools/ directory with pokeemerald We really ought to have a central repository for this mess * Make incremental builds faster Scientists hate him! He made NODEP disappear with this ONE SIMPLE TRICK!!! Want to know more? -> __click here__ <- * Disassemble some more tables and the first graphic
25 lines
312 B
Makefile
25 lines
312 B
Makefile
CXX ?= g++
|
|
|
|
CXXFLAGS := -Wall -std=c++11 -O2
|
|
|
|
SRCS := json11.cpp mapjson.cpp
|
|
|
|
HEADERS := mapjson.h
|
|
|
|
ifeq ($(OS),Windows_NT)
|
|
EXE := .exe
|
|
else
|
|
EXE :=
|
|
endif
|
|
|
|
.PHONY: all clean
|
|
|
|
all: mapjson$(EXE)
|
|
@:
|
|
|
|
mapjson$(EXE): $(SRCS) $(HEADERS)
|
|
$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)
|
|
|
|
clean:
|
|
$(RM) mapjson mapjson.exe
|