Add initial files

This commit is contained in:
2022-02-13 17:40:20 +01:00
parent f18c9eeb19
commit c498cf79e6
13 changed files with 174 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
VSLC := ../src/vslc
PS2_EXAMPLES := $(patsubst ps2-parser/%.vsl, ps2-parser/%.ast, $(wildcard ps2-parser/*.vsl))
all: $(PS2_EXAMPLES)
echo $(PS2_EXAMPLES)
%.ast: %.vsl
$(VSLC) -t < $^ > $@
clean:
-rm -r */*.ast