| 1234567891011121314151617181920212223242526272829303132 |
- #
- ############################################
- # This build file assumes the vishap oberon compiler is installed.
- ############################################
- #
- rm -f ./*.o
- rm -f ./PL0
- #
- for x in \
- CharacterInput.mod \
- Interpreter.mod \
- ErrorHandling.mod \
- Scanner.mod \
- StringTable.mod \
- Generator.mod \
- ObjectTable.mod \
- InternalTree.mod \
- SyntaxAnalysis.mod \
- ErrorHandling.mod \
- Synthesis.mod
- do
- echo "+++++++++++++++++++++++++++++"
- echo $x
- gm2 -fiso -c $x
- done
- echo "+++++++++++++++++++++++++++++"
- echo PL0.mod
- gm2 -fiso *.o PL0.mod -o PL0
|