tamer: Makefile.am (all): Binaries and doc

`all` was previously the target for binaries only.
main
Mike Gerwitz 2021-07-23 22:23:10 -04:00
parent 6ec1a49506
commit 60372d2960
1 changed files with 6 additions and 1 deletions

View File

@ -24,7 +24,12 @@
CARGO_BUILD_FLAGS=@CARGO_BUILD_FLAGS@
all:
.DEFAULT: bin
all: bin doc
.PHONY: bin
bin:
@CARGO@ build $(CARGO_BUILD_FLAGS) @FEATURES@
doc: html