diff options
| author | 2019-10-29 19:18:44 -0500 | |
|---|---|---|
| committer | 2019-10-29 19:18:44 -0500 | |
| commit | 280dca3998c8358f982c3fbcb0c68c865bf0f72a (patch) | |
| tree | 54215894f8456a0f987b16374fa3a30e7b6e5c7c /appveyor.yml | |
| parent | Fix tools/removecr.janet (diff) | |
Add shell.c to the amalgamation.
This allows easy builds of the full interpreter with no
build system.
1. Get janet.c, janet.h, janetconf.h, and shell.c in a directory. Edit
janetconf.h as desired.
2. gcc shell.c janet.c -lm -ldl -O2 -o janet (on GNU-Linux for example)
3. ./janet -h (Yay!)
Diffstat (limited to 'appveyor.yml')
| -rw-r--r-- | appveyor.yml | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/appveyor.yml b/appveyor.yml index 38e5a2c8..927684f9 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -42,6 +42,9 @@ artifacts: - name: janetconf.h path: dist\janetconf.h type: File + - name: shell.c + path: dist\shell.c + type: File - name: "janet-$(janet_outname)-windows" path: dist type: Zip |
