diff options
author | bptato <nincsnevem662@gmail.com> | 2024-07-19 18:48:04 +0200 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2024-07-19 18:48:04 +0200 |
commit | ed2eb7541a26b346348c0dd0c7bf69af67bf59b8 (patch) | |
tree | 25d2ff7c97b9700802645cbf2f5d861c3e00e1ab /doc/build.md | |
parent | 0d08ee8959d126d652fc42e9af63dbc8cc1d93ba (diff) | |
download | chawan-ed2eb7541a26b346348c0dd0c7bf69af67bf59b8.tar.gz |
Makefile: add distclean
Diffstat (limited to 'doc/build.md')
-rw-r--r-- | doc/build.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/doc/build.md b/doc/build.md index 2fe463b8..d5573cb2 100644 --- a/doc/build.md +++ b/doc/build.md @@ -53,7 +53,8 @@ also override them by setting an environment variable with the same name. ## Phony targets * `all`: build all required executables -* `clean`: remove OBJDIR, OUTDIR, and the QuickJS library +* `clean`: remove OBJDIR (i.e. object files, but not the built executables) +* `distclean`: remove OBJDIR and OUTDIR (i.e. both object files and executables) * `manpage`: rebuild man pages; note that this is not part of `all`. Manual pages are included in the repository, so this only needs to be called when you modify the documentation. |