VOL-1314 - Cleanup and remove permissive and other compiler warnings

Removed -fpermissive and -fno-literals warning suppression.

Added helper methods for BAL bitwise operators to properly typecast to/from int/enum types.
Technically, these should be pushed back to broadcom in their BAL. But, for now, this
will handle the bitmanipulation warnings.

Changed many BAL apis to use API macros to set attributes which implicitly sets internal
presence flags rather than doing it manually. Overall, better to use the API macros for
consistency.

Fixed errant enum value for oper vs admin state

Fixed make clean that didn't clean googleapis after directory refactoring

Change-Id: I01dd0539c550674721bc00a0b78273dc75b554c8
diff --git a/agent/src/indications.cc b/agent/src/indications.cc
index fd40603..5807c0b 100644
--- a/agent/src/indications.cc
+++ b/agent/src/indications.cc
@@ -262,7 +262,7 @@
 
     onu_ind->set_intf_id(key->intf_id);
     onu_ind->set_onu_id(key->sub_term_id);
-    if (data->new_oper_status == BCMBAL_STATE_UP) {
+    if (data->new_oper_status == BCMBAL_STATUS_UP) {
         onu_ind->set_oper_state("up");
     } else {
         onu_ind->set_oper_state("down");