home *** CD-ROM | disk | FTP | other *** search
Modula Definition | 1988-01-24 | 1.1 KB | 39 lines | [TEXT/????] |
- DEFINITION MODULE MakeParser;
-
- (*
- * MAKEMAKE. Create a MAKEFILE for a MODULA-2 program.
- *
- * Written by Steve Tynor, 30 September 1986.
- * UUCP : tynor@gitpyr
- * USNAIL: 2550 Akers Mill Rd. T-2, Atlanta GA. 30339
- *
- * Permission is granted to distribute, copy and change this program as long
- * as this notice remains...
- ---
- *
- * Make.
- * Modified and extended for MacMETH by :
- * J?rgen N?rgaard, 23 october 1987.
- * UUCP : jnp@daimi.dk
- * MAIL : Dybb?lvej 29, v?r. 2+3, 8240 Risskov, DENMARK
- *
- * Essentially only the parser remains from the original.
- * Extensions are a dependency-tree and a make-like facility.
- *
- *)
-
- IMPORT System;
- IMPORT MakeForest;
-
- TYPE
- FileType = (def, mod, main);
-
- (*----------------------------------------------------------------------*)
- PROCEDURE ParseModule (VAR modulename : MakeForest.NameString;
- type : FileType;
- VAR de : MakeForest.EntityPtr;
- VAR filename : System.Path;
- VAR succeded : BOOLEAN);
-
- END MakeParser.
-