mirror of
https://github.com/pret/pmd-red.git
synced 2026-04-03 16:05:04 -05:00
19 lines
301 B
Makefile
19 lines
301 B
Makefile
CXX ?= g++
|
|
|
|
CXXFLAGS := -Wall -std=c++11 -O2
|
|
|
|
SRCS := json11.cpp dungeonjson.cpp move_id_json.cpp
|
|
|
|
HEADERS := dungeonjson.h move_id_json.h
|
|
|
|
.PHONY: all clean
|
|
|
|
all: dungeonjson
|
|
@:
|
|
|
|
dungeonjson: $(SRCS) $(HEADERS)
|
|
$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)
|
|
|
|
clean:
|
|
$(RM) dungeonjson dungeonjson.exe
|