diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/foo.sh | 4 | ||||
-rw-r--r-- | src/local.mk | 3 | ||||
-rw-r--r-- | src/main.sh | 4 |
3 files changed, 11 insertions, 0 deletions
diff --git a/src/foo.sh b/src/foo.sh new file mode 100644 index 0000000..39ec45d --- /dev/null +++ b/src/foo.sh @@ -0,0 +1,4 @@ +hello() +{ + echo hello world +} diff --git a/src/local.mk b/src/local.mk new file mode 100644 index 0000000..3f18420 --- /dev/null +++ b/src/local.mk @@ -0,0 +1,3 @@ +firman_SOURCES += \ + src/main.sh \ + src/foo.sh diff --git a/src/main.sh b/src/main.sh new file mode 100644 index 0000000..62878e3 --- /dev/null +++ b/src/main.sh @@ -0,0 +1,4 @@ +main() +{ + hello +} |