~ubuntu-branches/ubuntu/wily/styx/wily

« back to all changes in this revision

Viewing changes to examples/example07/mx

  • Committer: Package Import Robot
  • Author(s): Frederik Schüler
  • Date: 2013-12-28 18:20:37 UTC
  • mfrom: (0.1.5)
  • Revision ID: package-import@ubuntu.com-20131228182037-ihsf1de5y1oe24nf
Tags: 2.0.1-1
New upstream release

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
#! /bin/sh -e
2
 
# [mx] make '*.img'
3
 
 
4
 
#destination directory for parser and scanner table image files
5
 
BINSTYX=.
6
 
#destination directory for parser and scanner table and term interface source files
7
 
GENSTYX=.
8
 
#source directory of language specification file
9
 
SPESTYX=.
10
 
 
11
 
export BINSTYX GENSTYX SPESTYX
12
 
 
13
 
#create source files
14
 
styx st    -makeIMG -verbose
15
 
styx sp11  -makeIMG -verbose
16
 
styx sp21  -makeIMG -verbose
17
 
styx php50 -makeIMG -verbose
18
 
styx php52 -makeIMG -verbose
19
 
styx json  -makeIMG -verbose
20
 
 
21
 
#test example
22
 
#pim_test st    <some smalltalk80 source>
23
 
#pim_test sp11  <some express source>
24
 
#pim_test sp21  <some step exchange file>
25
 
#pim_test php50 <some PHP (<=5.0) source with standard open/close tags>
26
 
#pim_test php52 <some PHP (<=5.2) source with standard open/close tags>
27
 
#pim_test json  <some json source>