home *** CD-ROM | disk | FTP | other *** search
- /* OberonMake - Rexx-Apll für OMake */
-
- if ~show('L','rexxsupport.library') then
- call addlib('rexxsupport.library',0,-30)
-
- 'rx oberonsave'
-
- opts = ''
- open('file','env:OProject','R')
- project = readln('file')
- close('file')
-
- IF open('file','env:.OCopt','R') THEN DO
- copts = 'c'||readln('file')
- close('file')
- END;
- IF open('file','env:.OLopt','R') THEN DO
- lopts = 'l'||readln('file')
- close('file')
- END;
-
- call close 'STDERR'
- call open 'STDERR','NIL:','W'
- call close 'STDIN'
- call close 'STDOUT'
- call open 'STDOUT','CON:25/15/640/256/RexxCon','RW'
- call pragma '*','STDOUT'
-
- address command 'omake >* <*' copts lopts project 'DONTLINK'
-
- delay(100)
- close('STDOUT')
-
-