mirror of
https://github.com/pret/pokediamond.git
synced 2026-04-16 01:56:36 -05:00
21 lines
297 B
Makefile
21 lines
297 B
Makefile
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
|