From: Michael D. Lowis Date: Wed, 14 Apr 2021 15:07:41 +0000 (-0400) Subject: removed remnants of removed binaries X-Git-Url: https://git.mdlowis.com/?a=commitdiff_plain;h=a10bae71a65c5eb343f738199a862e4ad630fc71;p=proto%2Fobnc.git removed remnants of removed binaries --- diff --git a/share/man/man1/obnc-path.1 b/share/man/man1/obnc-path.1 deleted file mode 100644 index 4e6a7db..0000000 --- a/share/man/man1/obnc-path.1 +++ /dev/null @@ -1,35 +0,0 @@ -.TH OBNC-PATH 1 -.SH NAME -obnc-path \- print directory path for Oberon module -.SH SYNOPSIS -.B obnc-path -[\fB\-v\fR] -MODULE -.br -.B obnc-path -(\fB\-h\fR | \fB\-v\fR) -.SH DESCRIPTION -.B obnc-path -prints the directory path for an Oberon module. For a module M, the printed path is the first directory found which contains either the Oberon source file, -.IR .obnc/M.sym -or -.IR M.sym . -.P -First the current directory is searched. Then paths in OBNC_IMPORT_PATH are searched. Finally the default library directory in the OBNC installation path is searched. -.P -For each path P, modules are searched both in P and in first-level subdirectories of P. Subdirectories represent individual libraries and are expected to be in lowercase. For the modules in a subdirectory L, only modules prefixed with L followed by an uppercase letter are searched. The other modules in L are considered local to the library. -.SH OPTIONS -.TP -.BR \-h -Display help and exit. -.TP -.BR \-v -Without argument, display version and exit. Otherwise, print each inspected directory path to standard output. -.SH ENVIRONMENT -.IP OBNC_IMPORT_PATH -List of directory paths to search Oberon modules in. Paths are separated with a colon on POSIX systems, and with a semicolon on MS Windows. -.SH AUTHOR -Written by Karl Landstr\[:o]m -.SH "SEE ALSO" -.BR obnc (1), -.BR obnc-compile (1) diff --git a/share/man/man1/obncdoc.1 b/share/man/man1/obncdoc.1 deleted file mode 100644 index 4eb4340..0000000 --- a/share/man/man1/obncdoc.1 +++ /dev/null @@ -1,29 +0,0 @@ -.TH OBNCDOC 1 -.SH NAME -obncdoc \- extract exported features from Oberon modules -.SH SYNOPSIS -.B obncdoc -[\fB\-h\fR | \fB\-v\fR] -.SH DESCRIPTION -.B obncdoc -reads the Oberon source files in the current directory and creates module definitions in plain-text and HTML. A module index is also created. Each definition contains the exported declarations and the exported comments (start with an asterisk) for the corresponding module. The definition files are created, updated or deleted only as needed. A default style file, -.IR style.css , -is created only if not present. This provides for custom style sheets. All output files are written to the directory -.I obncdoc -in the current directory. Oberon source filenames are expected to end with -.IR .obn , -.IR .Mod -or -.IR .mod . -.P -.B obncdoc -is not a complete parser so no syntactical or semantical checks are performed. -.SH OPTIONS -.TP -.BR \-h -Display help and exit. -.TP -.BR \-v -Display version and exit. -.SH AUTHOR -Written by Karl Landstr\[:o]m diff --git a/tests/obncdoc/ExportedFeatures.def b/tests/obncdoc/ExportedFeatures.def deleted file mode 100644 index 8a3fadc..0000000 --- a/tests/obncdoc/ExportedFeatures.def +++ /dev/null @@ -1,30 +0,0 @@ -DEFINITION ExportedFeatures; (*documentation...*) - - IMPORT F := Files; - - CONST - s = "s* = 'foo'; (**"; (*(*"foo"*)*) - - TYPE - T = RECORD - f: RECORD (*documentation...*) - h: INTEGER - END; - END; - - T1 = RECORD (T) END; - - VAR - x: T; (*documentation...*) - u: F.File; - - PROCEDURE P(x: INTEGER; - y: REAL; - z: BYTE); -(*documentation, -documentation...*) - - PROCEDURE R((*in/out*) VAR x: INTEGER; (*out*) VAR y: REAL; VAR z: BYTE); -(*documentation...*) - -END ExportedFeatures. diff --git a/tests/obncdoc/ExportedFeatures.def.html b/tests/obncdoc/ExportedFeatures.def.html deleted file mode 100644 index 5f0c351..0000000 --- a/tests/obncdoc/ExportedFeatures.def.html +++ /dev/null @@ -1,45 +0,0 @@ - - - - - - DEFINITION ExportedFeatures - - - -

Index

- -
-DEFINITION ExportedFeatures; (*documentation...*)
-
-	IMPORT F := Files;
-
-	CONST
-		s = "s* = 'foo'; (**"; (*(*"foo"*)*)
-
-	TYPE
-		T = RECORD
-			f: RECORD (*documentation...*)
-				h: INTEGER
-			END;
-		END;
-
-		T1 = RECORD (T) END;
-
-	VAR
-		x: T; (*documentation...*)
-		u: F.File;
-
-	PROCEDURE P(x: INTEGER;
-		y: REAL;
-		z: BYTE);
-(*documentation,
-documentation...*)
-
-	PROCEDURE R((*in/out*) VAR x: INTEGER; (*out*) VAR y: REAL; VAR z: BYTE);
-(*documentation...*)
-
-END ExportedFeatures.
-
- - diff --git a/tests/obncdoc/ExportedFeatures.obn b/tests/obncdoc/ExportedFeatures.obn deleted file mode 100644 index e794ebf..0000000 --- a/tests/obncdoc/ExportedFeatures.obn +++ /dev/null @@ -1,51 +0,0 @@ -module ExportedFeatures; (**documentation...*) - - import F := Files, Out; - - const - s* = "s* = 'foo'; (**"; (**(*"foo"*)*) - (*s* = "s* = 'foo'; (**"; (**(*"foo"*)*)*)*) - t = 37; - - type - T0 = Int; - - (*documentation...*) - T* = record - f*: record (**documentation...*) - g: Int; - h*: Int - end; - g: Real - end; - - T1* = record (T) (*documentation...*) - h: Int - end; - - T2 = record - (*f*: Int*) - end; - - var - x*, y: T; (**documentation...*) - z, u*: F.File; - - procedure P*(x: Int; - y: Real; - z: Byte); -(**documentation, -documentation...*) - end P; - - - procedure Q; -(*documentation...*) - end Q; - - - procedure R*((**in/out*) var x: Int; (**out*) var y: Real; (*out*) var z: Byte); -(**documentation...*) - end R; - -end ExportedFeatures. diff --git a/tests/obncdoc/NoExportedFeatures.def b/tests/obncdoc/NoExportedFeatures.def deleted file mode 100644 index cee1f9a..0000000 --- a/tests/obncdoc/NoExportedFeatures.def +++ /dev/null @@ -1,2 +0,0 @@ -definition NoExportedFeatures; -end NoExportedFeatures. diff --git a/tests/obncdoc/NoExportedFeatures.def.html b/tests/obncdoc/NoExportedFeatures.def.html deleted file mode 100644 index 2bd0805..0000000 --- a/tests/obncdoc/NoExportedFeatures.def.html +++ /dev/null @@ -1,17 +0,0 @@ - - - - - - DEFINITION NoExportedFeatures - - - -

Index

- -
-DEFINITION NoExportedFeatures;
-END NoExportedFeatures.
-
- - diff --git a/tests/obncdoc/NoExportedFeatures.obn b/tests/obncdoc/NoExportedFeatures.obn deleted file mode 100644 index 6911ffd..0000000 --- a/tests/obncdoc/NoExportedFeatures.obn +++ /dev/null @@ -1,17 +0,0 @@ -module NoExportedFeatures; - - import M := Math; - - const - alpha = M.pi; (*documentation*) - - type - Int = Int; - - var - x: Int; - - procedure P; - end P; - -end NoExportedFeatures.