diff options
Diffstat (limited to 'Makefile.in')
| -rw-r--r-- | Makefile.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in index 1faefbab..4ad2d6bb 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1,6 +1,7 @@ RUSTC := rustc BUILDDIR := build -RUSTFLAGS := -O --cfg ndebug +RUSTCFGS := %RUSTCFGS% +RUSTFLAGS := -O --cfg ndebug $(RUSTCFGS) INSTALL_DIR := %PREFIX% OPENSSL_LIB := lib.rs @@ -29,7 +30,7 @@ clean: rm -rf $(BUILDDIR) doc: $(OPENSSL) - rustdoc $(OPENSSL_LIB) + rustdoc $(RUSTCFGS) $(OPENSSL_LIB) install: $(OPENSSL) install $(OPENSSL) $(INSTALL_DIR) |