summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorSamuel Holland <samuel@sholland.org>2019-07-05 21:25:36 -0500
committerSamuel Holland <samuel@sholland.org>2019-07-05 22:32:22 -0500
commit1db574fa1f339f77999d3988251e13a266201083 (patch)
tree9d5d6cf6fef5b0cf81ec107eb2ef70f22c296156 /bin
parent4b05e0e49c979e4a49f37a441556ee11cd6a0c5e (diff)
downloaduserland-1db574fa1f339f77999d3988251e13a266201083.tar.gz
userland-1db574fa1f339f77999d3988251e13a266201083.tar.bz2
userland-1db574fa1f339f77999d3988251e13a266201083.tar.xz
userland-1db574fa1f339f77999d3988251e13a266201083.zip
build: add wrapper Makefile
Diffstat (limited to 'bin')
-rw-r--r--bin/ed/ed.gpr10
-rw-r--r--bin/stty/stty.gpr6
2 files changed, 16 insertions, 0 deletions
diff --git a/bin/ed/ed.gpr b/bin/ed/ed.gpr
new file mode 100644
index 0000000..9ebfc3c
--- /dev/null
+++ b/bin/ed/ed.gpr
@@ -0,0 +1,10 @@
+project ed extends "template/bin.gpr" is
+
+ for Main use ("main");
+ for Object_Dir use External ("BUILDROOT") & "/" & project'Name;
+
+ package Builder is
+ for Executable ("main") use "ed";
+ end Builder;
+
+end ed;
diff --git a/bin/stty/stty.gpr b/bin/stty/stty.gpr
new file mode 100644
index 0000000..d41143a
--- /dev/null
+++ b/bin/stty/stty.gpr
@@ -0,0 +1,6 @@
+project stty extends "template/bin.gpr" is
+
+ for Main use (project'Name);
+ for Object_Dir use External ("BUILDROOT") & "/" & project'Name;
+
+end stty;