summaryrefslogtreecommitdiffstats
path: root/app
diff options
context:
space:
mode:
authorNatanael Copa <natanael.copa@gmail.com>2007-04-05 22:39:14 +0000
committerNatanael Copa <natanael.copa@gmail.com>2007-04-05 22:39:14 +0000
commit769d0255733508aff48c6c41ccee190b48814708 (patch)
treece4d879f4d08a7dc85e4a2a297fd0ff7d65942c6 /app
parente6515dc9861313a48f99545d5b6076677215c04c (diff)
downloadacf-core-769d0255733508aff48c6c41ccee190b48814708.tar.bz2
acf-core-769d0255733508aff48c6c41ccee190b48814708.tar.xz
initial Makefilesv2.0
git-svn-id: svn://svn.alpinelinux.org/acf/core/trunk@200 ab2d0c66-481e-0410-8bed-d214d4d58bed
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")