Supply a build rule for the recently added nptest
authorBenjamin Kaduk <bkaduk@akamai.com>
Fri, 4 Sep 2015 23:50:24 +0000 (18:50 -0500)
committerRich Salz <rsalz@openssl.org>
Sat, 5 Sep 2015 03:00:58 +0000 (23:00 -0400)
commit18716ba2563fb371d3d25a5d7d8dcb7ddb14341b
tree82901a12eb70413cf44767991817e8970ca4ad4c
parent13e228d6845aff7e454eea7c9ddd392ebfbd2868
Supply a build rule for the recently added nptest

Commit d4ab70f27cb7e518e6a9d6323c996cc3feb7496b added a test program
to check that the NULL pointer is represented as all zero bits, but
did not specify a build rule for that new executable.  On many platforms,
the implicit rule sufficed, since nptest is a very simple program, but
for at least darwin-i386-cc, an explicit rule is needed.  On darwin-i386-cc,
the implicit rule targetted a 64-bit executable, but the object file
containing the definition of main was a 32-bit object, which the linker
excluded from consideration, resulting in a link failure due to no
definition for _main.

Add the missing build rule to fix the build on such platforms.

Signed-off-by: Rich Salz <rsalz@openssl.org>
Reviewed-by: Dr. Stephen Henson <steve@openssl.org>
test/Makefile