summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/Makefile4
-rw-r--r--app/hello.lua3
2 files changed, 7 insertions, 0 deletions
diff --git a/app/Makefile b/app/Makefile
new file mode 100644
index 0000000..63df57e
--- /dev/null
+++ b/app/Makefile
@@ -0,0 +1,4 @@
+APP_DIST=hello.lua
+
+include ../config.mk
+include ../acf.mk
diff --git a/app/hello.lua b/app/hello.lua
new file mode 100644
index 0000000..a26be1e
--- /dev/null
+++ b/app/hello.lua
@@ -0,0 +1,3 @@
+#!/usr/bin/env lua
+
+print("hello world")