Added Makefile for PL/0.

This commit is contained in:
yhirose 2017-08-17 17:54:46 -04:00
parent 3e9d8c506a
commit acb986f525

2
pl0/Makefile Normal file
View File

@ -0,0 +1,2 @@
pl0: pl0.cc ../peglib.h
clang++ -std=c++14 -g -O0 pl0.cc `llvm-config --cxxflags --ldflags --system-libs --libs` -I.. -o pl0