1
0
mirror of https://github.com/janet-lang/janet synced 2024-11-24 17:27:18 +00:00

Add valtest and debug to Makefile help.

This commit is contained in:
Calvin Rose 2020-05-15 17:59:05 -05:00
parent 5c9c738913
commit 92df01b99d
2 changed files with 6 additions and 1 deletions

View File

@ -317,8 +317,10 @@ help:
@echo ' make test Test a built Janet' @echo ' make test Test a built Janet'
@echo ' make valgrind Assess Janet with Valgrind' @echo ' make valgrind Assess Janet with Valgrind'
@echo ' make callgrind Assess Janet with Valgrind, using Callgrind' @echo ' make callgrind Assess Janet with Valgrind, using Callgrind'
@echo ' make valtest Run the test suite with Valgrind to check for memory leaks'
@echo ' make dist Create a distribution tarball' @echo ' make dist Create a distribution tarball'
@echo ' make docs Generate documentation' @echo ' make docs Generate documentation'
@echo ' make debug Run janet with GDB or LLDB'
@echo ' make install Install into the current filesystem' @echo ' make install Install into the current filesystem'
@echo ' make uninstall Uninstall from the current filesystem' @echo ' make uninstall Uninstall from the current filesystem'
@echo ' make clean Clean intermediate build artifacts' @echo ' make clean Clean intermediate build artifacts'
@ -327,4 +329,4 @@ help:
@echo @echo
.PHONY: clean install repl debug valgrind test \ .PHONY: clean install repl debug valgrind test \
valtest emscripten dist uninstall docs grammar format help valtest dist uninstall docs grammar format help

3
test.janet Normal file
View File

@ -0,0 +1,3 @@
(defn hungry
[x]
(print x " is hungry"))