fix the host/emulation build

Going for __ARM__ to distinguish host and firmware builds is not
sufficient here, since we might be building on a ARM host, so there is
now a OCTSIMFWBUILD define.

Change-Id: Ib07a58b6102b1709f295d08a764c6f118a2d0b9e
diff --git a/ccid_host/Makefile b/ccid_host/Makefile
index e9f34cc..7625177 100644
--- a/ccid_host/Makefile
+++ b/ccid_host/Makefile
@@ -11,6 +11,7 @@
 		 ../ccid_common/ccid_proto.o \
 		 ../ccid_common/ccid_device.o \
 		 ../ccid_common/ccid_slot_fsm.o \
+		 ../ccid_common/iso7816_3.o \
 		 ../ccid_common/iso7816_fsm.o
 	$(CC) $(CFLAGS) -o $@ $^ $(LIBS) -laio
 
@@ -28,6 +29,7 @@
 		cuart_driver_tty.o \
 		utils_ringbuffer.o \
 		../ccid_common/iso7816_fsm.o \
+		../ccid_common/iso7816_3.o \
 		../ccid_common/cuart.o
 	$(CC) $(CFLAGS) -o $@ $^ $(LIBS) $(shell pkg-config --libs libosmosim)