mirror of
https://github.com/CrowCpp/Crow.git
synced 2024-06-07 21:10:44 +00:00
6 lines
104 B
Makefile
6 lines
104 B
Makefile
all:
|
|
$(CXX) -std=c++11 -g -o mustachetest mustachetest.cc
|
|
.PHONY: clean
|
|
clean:
|
|
rm -f mustachetest *.o
|