-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add a dummy executable so that alr has something to build.
- Loading branch information
1 parent
821519f
commit ab29e1a
Showing
6 changed files
with
35 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,5 +12,10 @@ | |
*.lexch | ||
*.gcno | ||
*.cgpr | ||
*.bexch | ||
|
||
# Other files | ||
b__dummy_main1.* | ||
dummy_main1 | ||
|
||
.#bbs-units.adb# |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
with Ada.Text_IO; | ||
with BBS.info; | ||
-- | ||
-- This is a simple shell routine to call the embedded lisp interpreter. | ||
-- | ||
procedure dummy_main1 is | ||
begin | ||
Ada.Text_IO.Put_Line("BBS root package"); | ||
Ada.Text_IO.Put_Line("Name: " & BBS.info.name); | ||
Ada.Text_IO.Put_Line("Timestamp: " & BBS.info.timestamp); | ||
Ada.Text_IO.Put_Line("Build date: " & BBS.info.build_date); | ||
Ada.Text_IO.Put_Line("Version string: " & BBS.info.version_string); | ||
Ada.Text_IO.Put_Line("Version date: " & Integer'Image(BBS.info.version_date)); | ||
Ada.Text_IO.Put_Line("Version number: " & Integer'Image(BBS.info.version_number)); | ||
end dummy_main1; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters