summaryrefslogtreecommitdiff
path: root/grammar/Makefile
diff options
context:
space:
mode:
authorAdrian Thurston <thurston@colm.net>2019-12-01 09:38:20 -0800
committerAdrian Thurston <thurston@colm.net>2019-12-01 09:38:20 -0800
commitd71253d7fdb59464e5c094b5b091c87aa2a189d5 (patch)
tree90f71fa6cd6f3ad6d21bf56d47e077fb5b6f4516 /grammar/Makefile
parent5a4407de2c4c03083f1c25b5c7fdb849cdc08a12 (diff)
downloadcolm-d71253d7fdb59464e5c094b5b091c87aa2a189d5.tar.gz
added C++ and Python grammars, taken from test suite
These both need to be updated and tested for code in the wild. They were originally developed to showcase colm features.
Diffstat (limited to 'grammar/Makefile')
-rw-r--r--grammar/Makefile6
1 files changed, 2 insertions, 4 deletions
diff --git a/grammar/Makefile b/grammar/Makefile
index 21a2603a..44ac4032 100644
--- a/grammar/Makefile
+++ b/grammar/Makefile
@@ -1,6 +1,4 @@
-SUBDIRS = "rust pcre dns"
+SUBDIRS = rust pcre dns c++ python
all: rust pcre dns
- for d in $(SUBDIRS); do cd $$d && $(MAKE); done
-
-
+ for d in $(SUBDIRS); do ( cd $$d && $(MAKE) ); done