Don't link against explicit instances of libm, librt, etc..

The current way adds unnecessary RPATH entries into the binaries that
aren't helpful. This patch just adds linkopts to the apprpriate
targets to let the linker decide what to do.

This should allow us to run binaries on Debian 8 that were compiled on
Debian 9 with a sandboxed compiler.

Change-Id: Icdec2ffbd12f83b72a4ab678b8fcbbb2adc12bc5
diff --git a/y2014/control_loops/shooter/BUILD b/y2014/control_loops/shooter/BUILD
index 9f92f17..6ab2a8b 100644
--- a/y2014/control_loops/shooter/BUILD
+++ b/y2014/control_loops/shooter/BUILD
@@ -58,7 +58,9 @@
     '//y2014:constants',
     '//frc971/control_loops:state_feedback_loop',
     '//aos/common/logging:queue_logging',
-    '//debian:libm',
+  ],
+  linkopts = [
+    '-lm',
   ],
 )