From acb986f525bfc5da5a7a8be37f93eb91004c71f4 Mon Sep 17 00:00:00 2001 From: yhirose Date: Thu, 17 Aug 2017 17:54:46 -0400 Subject: [PATCH] Added Makefile for PL/0. --- pl0/Makefile | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 pl0/Makefile diff --git a/pl0/Makefile b/pl0/Makefile new file mode 100644 index 0000000..2a685ab --- /dev/null +++ b/pl0/Makefile @@ -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