diff --git a/Makefile b/Makefile index 1a9a41fa..d522430d 100644 --- a/Makefile +++ b/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 diff --git a/README.md b/README.md index 588fe8dc..361f2c15 100644 --- a/README.md +++ b/README.md @@ -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.