aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2014-01-18 13:24:23 -0800
committerSteven Fackler <[email protected]>2014-01-18 13:24:23 -0800
commita84bf2976b0c61bde34b3f1ba28c6d953a54a604 (patch)
tree0a85ac4123788b45b342e552c944098a441ca998 /Makefile
parentUpdate build system (diff)
downloadrust-openssl-a84bf2976b0c61bde34b3f1ba28c6d953a54a604.tar.xz
rust-openssl-a84bf2976b0c61bde34b3f1ba28c6d953a54a604.zip
Add a way to print the target binary
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ce3b7691..770efee9 100644
--- a/Makefile
+++ b/Makefile
@@ -27,4 +27,7 @@ $(OPENSSL_TEST): $(OPENSSL_LIB) | $(BUILDDIR)
clean:
rm -rf $(BUILDDIR)
-.PHONY: all check clean
+print-target:
+ @echo $(OPENSSL)
+
+.PHONY: all check clean print-target