
6 changed files with 28 additions and 11 deletions
@ -0,0 +1,13 @@ |
|||||
|
.PHONY: all test src clean |
||||
|
|
||||
|
all: src |
||||
|
|
||||
|
src: |
||||
|
$(MAKE) -C src |
||||
|
|
||||
|
#test:
|
||||
|
# $(MAKE) -C test
|
||||
|
|
||||
|
clean: |
||||
|
$(MAKE) -C src clean |
||||
|
# $(MAKE) -C test clean
|
@ -0,0 +1,7 @@ |
|||||
|
DSLNAME=RecipeLang |
||||
|
|
||||
|
YML_PATH+=:$(realpath ../grammar) |
||||
|
COMPILER=$(realpath compiler/$(DSLNAME).ysl2) |
||||
|
BUILD_DIR=./build |
||||
|
|
||||
|
|
@ -1,4 +1,5 @@ |
|||||
// Example language grammar |
// Language grammar |
||||
|
// for example language RecipeLang |
||||
|
|
||||
DSLName { |
DSLName { |
||||
dls_data { |
dls_data { |
Loading…
Reference in new issue