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/debian/BUILD b/debian/BUILD
index 26d0f8c..a20b894 100644
--- a/debian/BUILD
+++ b/debian/BUILD
@@ -1,12 +1,3 @@
 package(default_visibility = ['//visibility:public'])
 
-load('//tools/build_rules:select.bzl', 'cpu_select')
-
-[ cc_library(
-  name = libname,
-  deps = cpu_select({
-    "roborio": ['@arm_frc_linux_gnueabi_repo//:' + libname],
-    "amd64": ['@usr_repo//:' + libname],
-    "armhf": ['@linaro_linux_gcc_4_9_repo//:' + libname],
-  }),
-) for libname in ['libpthread', 'libm', 'libdl', 'librt']]
+# TODO(phil): Add deb-to-tarball targets here.