mirror of
https://github.com/janet-lang/janet
synced 2024-11-16 05:34:48 +00:00
Merge pull request #399 from LouisJackman/add-make-help-target
Add make help target
This commit is contained in:
commit
5c9c738913
22
Makefile
22
Makefile
@ -306,5 +306,25 @@ test-install:
|
|||||||
cd test/install && jpm --verbose --test --modpath=./modpath install https://github.com/janet-lang/path.git
|
cd test/install && jpm --verbose --test --modpath=./modpath install https://github.com/janet-lang/path.git
|
||||||
cd test/install && jpm --verbose --test --modpath=./modpath install https://github.com/janet-lang/argparse.git
|
cd test/install && jpm --verbose --test --modpath=./modpath install https://github.com/janet-lang/argparse.git
|
||||||
|
|
||||||
|
help:
|
||||||
|
@echo
|
||||||
|
@echo 'Janet: A Dynamic Language & Bytecode VM'
|
||||||
|
@echo
|
||||||
|
@echo Usage:
|
||||||
|
@echo ' make Build Janet'
|
||||||
|
@echo ' make repl Start a REPL from a built Janet'
|
||||||
|
@echo
|
||||||
|
@echo ' make test Test a built Janet'
|
||||||
|
@echo ' make valgrind Assess Janet with Valgrind'
|
||||||
|
@echo ' make callgrind Assess Janet with Valgrind, using Callgrind'
|
||||||
|
@echo ' make dist Create a distribution tarball'
|
||||||
|
@echo ' make docs Generate documentation'
|
||||||
|
@echo ' make install Install into the current filesystem'
|
||||||
|
@echo ' make uninstall Uninstall from the current filesystem'
|
||||||
|
@echo ' make clean Clean intermediate build artifacts'
|
||||||
|
@echo " make format Format Janet's own source files"
|
||||||
|
@echo ' make grammar Generate a TextMate language grammar'
|
||||||
|
@echo
|
||||||
|
|
||||||
.PHONY: clean install repl debug valgrind test \
|
.PHONY: clean install repl debug valgrind test \
|
||||||
valtest emscripten dist uninstall docs grammar format
|
valtest emscripten dist uninstall docs grammar format help
|
||||||
|
@ -88,6 +88,8 @@ make test
|
|||||||
make repl
|
make repl
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Find out more about the available make targets by running `make help`.
|
||||||
|
|
||||||
### 32-bit Haiku
|
### 32-bit Haiku
|
||||||
|
|
||||||
32-bit Haiku build instructions are the same as the unix-like build instructions,
|
32-bit Haiku build instructions are the same as the unix-like build instructions,
|
||||||
|
Loading…
Reference in New Issue
Block a user