1
0
mirror of https://github.com/janet-lang/janet synced 2025-10-16 16:27:40 +00:00

Fix normal native building and make test-install.

Add executable generation testing to make test-install.
This commit is contained in:
Calvin Rose
2019-07-27 09:50:44 -05:00
parent efc38b87de
commit cc07ff987d
6 changed files with 12 additions and 4 deletions

View File

@@ -1,2 +1,4 @@
/build
.cache
.manifest
json.*

View File

@@ -1 +0,0 @@
/home/calvin/code/janet/test/install/json.so

View File

@@ -5,3 +5,6 @@
:name "testmod"
:source @["testmod.c"])
(declare-executable
:name "testexec"
:entry "testexec.janet")

View File

@@ -0,0 +1,2 @@
(defn main [&]
(print "Hello from executable!"))