Skip to content

Commit df075e4

Browse files
author
Jesper Quorning
committed
Total cleanup
1 parent f907c5e commit df075e4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+229
-26
lines changed

.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
object/
2+
library/
3+
body_core/*setup.adb
4+
body_aws/*setup.adb
5+
body_gnat/*setup.adb
6+
var/*.template
7+
tools/create*

Makefile

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,32 +9,38 @@
99

1010
all: setup build test
1111

12+
1213
setup: setup-core setup-aws
1314

1415
build: build-core build-aws
1516

1617
clean: clean-core clean-aws
1718

19+
20+
setup-core:
21+
tools/create-setup-adb-core.sh
22+
23+
setup-aws:
24+
tools/create-setup-adb-aws.sh
25+
26+
1827
build-core:
19-
gprbuild -k dk8543.gpr
28+
gprbuild -k dk8543_core.gpr
2029

2130
build-aws:
2231
gprbuild -k dk8543_aws.gpr
2332

24-
test:
33+
build-test:
2534
gprbuild -k dk8543_test.gpr
2635

36+
2737
clean-core:
28-
gprclean -q dk8543.gpr
38+
gprclean -q dk8543_core.gpr
2939

3040
clean-aws:
3141
gprclean -q dk8543_aws.gpr
3242

3343
clean-test:
3444
gprclean -q dk8543_test.gpr
3545

36-
setup-core:
37-
tools/create-setup-adb.sh
3846

39-
setup-aws:
40-
tools/create-aws-setup-adb.sh
File renamed without changes.
File renamed without changes.
File renamed without changes.

body_core/dk8543-setup.adb

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
--
2+
-- The author disclaims copyright to this source code. In place of
3+
-- a legal notice, here is a blessing:
4+
--
5+
-- May you do good and not evil.
6+
-- May you find forgiveness for yourself and forgive others.
7+
-- May you share freely, not taking more than you give.
8+
--
9+
-----------------------------------------------------------------------------
10+
-- This Setup body template is a template for creating setup.adb.
11+
-- Create setup.adb by updating the file PROGRAM_VERSION and running
12+
-- create-setup-adb.sh from same directory.
13+
--
14+
15+
package body DK8543.Setup is
16+
17+
18+
function Get_Library_Name return String is
19+
begin
20+
return "DK8543";
21+
end Get_Library_Name;
22+
23+
24+
function Get_Library_Version return String is
25+
begin
26+
return "0.1.0";
27+
end Get_Library_Version;
28+
29+
30+
function Get_Build_ISO8601_UTC return String is
31+
begin
32+
return "2019-02-28T13:43:51";
33+
end Get_Build_ISO8601_UTC;
34+
35+
36+
end DK8543.Setup;
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)