mirror of
https://github.com/janet-lang/janet
synced 2024-11-24 17:27:18 +00:00
Update README.md
This commit is contained in:
parent
105f5f3b2d
commit
a512e3e837
10
Makefile
10
Makefile
@ -94,17 +94,17 @@ $(DST_TARGET): $(DST_ALL_SOURCES) $(DST_ALL_HEADERS)
|
||||
###################
|
||||
|
||||
repl: $(DST_TARGET)
|
||||
@ ./$(DST_TARGET)
|
||||
./$(DST_TARGET)
|
||||
|
||||
debug: $(DST_TARGET)
|
||||
@ $(DEBUGGER) ./$(DST_TARGET)
|
||||
$(DEBUGGER) ./$(DST_TARGET)
|
||||
|
||||
valgrind: $(DST_TARGET)
|
||||
@ valgrind --leak-check=full -v ./$(DST_TARGET)
|
||||
valgrind --leak-check=full -v ./$(DST_TARGET)
|
||||
|
||||
test: $(DST_TARGET)
|
||||
@ ./$(DST_TARGET) test/suite0.dst
|
||||
@ ./$(DST_TARGET) test/suite1.dst
|
||||
./$(DST_TARGET) test/suite0.dst
|
||||
./$(DST_TARGET) test/suite1.dst
|
||||
|
||||
valtest: $(DST_TARGET)
|
||||
valgrind --leak-check=full -v ./$(DST_TARGET) test/suite0.dst
|
||||
|
@ -81,7 +81,6 @@ make test
|
||||
On a posix system using make as the backend, compiling and running is as follows (this is the same as
|
||||
most CMake based projects).
|
||||
|
||||
### Build
|
||||
```sh
|
||||
cd somewhere/my/projects/dst
|
||||
mkdir -p build
|
||||
@ -96,11 +95,11 @@ The repl can also be run with the CMake run target.
|
||||
make run
|
||||
```
|
||||
|
||||
### Examples
|
||||
## Examples
|
||||
|
||||
See the examples directory for some example dst code.
|
||||
|
||||
### Editor
|
||||
## Editor
|
||||
|
||||
There is some preliminary vim syntax highlighting in [dst.vim](https://github.com/bakpakin/dst.vim).
|
||||
Generic lisp synatx highlighting should provide good results, however.
|
||||
|
Loading…
Reference in New Issue
Block a user