COMP: add createCode helper scripts

This commit is contained in:
Mark Olesen
2019-10-29 10:46:15 +01:00
committed by Andrew Heather
parent 56d5ba9982
commit 4e706c2625
2 changed files with 18 additions and 0 deletions

9
src/fileFormats/stl/createCode Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
# Manually create ragel code
"$WM_PROJECT_DIR/wmake/scripts/makeParser" \
-scanner=STLAsciiParseRagel.rl \
"$@"
#------------------------------------------------------------------------------

9
wmake/src/createCode Executable file
View File

@ -0,0 +1,9 @@
#!/bin/sh
cd ${0%/*} || exit 1 # Run from this directory
# Manually create ragel code
"$WM_PROJECT_DIR/wmake/scripts/makeParser" \
-scanner=wmkdepend.rl \
"$@"
#------------------------------------------------------------------------------