[BUILD] fix BSD and OSX makefiles for missing files

Jeff Buchbinder reported that OpenBSD build broke because recently
added files were not ported to BSD and OSX makefiles.
diff --git a/Makefile.bsd b/Makefile.bsd
index 015a365..191be4d 100644
--- a/Makefile.bsd
+++ b/Makefile.bsd
@@ -110,7 +110,8 @@
        src/session.o src/hdr_idx.o src/ev_select.o src/signal.o \
        src/lb_chash.o src/lb_fwlc.o src/lb_fwrr.o src/lb_map.o \
        src/ev_poll.o src/ev_kqueue.o \
-       src/acl.o src/memory.o src/freq_ctr.o
+       src/acl.o src/memory.o src/freq_ctr.o \
+       src/auth.o src/stick_table.o src/pattern.o
 
 EBTREE_OBJS = $(EBTREE_DIR)/ebtree.o \
               $(EBTREE_DIR)/eb32tree.o $(EBTREE_DIR)/eb64tree.o \
diff --git a/Makefile.osx b/Makefile.osx
index 5fa0da0..678a7fb 100644
--- a/Makefile.osx
+++ b/Makefile.osx
@@ -107,7 +107,8 @@
        src/session.o src/hdr_idx.o src/ev_select.o src/signal.o \
        src/lb_chash.o src/lb_fwlc.o src/lb_fwrr.o src/lb_map.o \
        src/ev_poll.o \
-       src/acl.o src/memory.o src/freq_ctr.o
+       src/acl.o src/memory.o src/freq_ctr.o \
+       src/auth.o src/stick_table.o src/pattern.o
 
 EBTREE_OBJS = $(EBTREE_DIR)/ebtree.o \
               $(EBTREE_DIR)/eb32tree.o $(EBTREE_DIR)/eb64tree.o \