mirror of
https://github.com/pret/pmd-red.git
synced 2026-03-29 05:24:54 -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
|