Makefile: build ccid_{device,proto} as part of firmware

Change-Id: I3e7afb7ed623f9ac65318bb9ee43eadcea59077f
diff --git a/sysmoOCTSIM/gcc/Makefile b/sysmoOCTSIM/gcc/Makefile
index 42aa48b..d1b8d89 100644
--- a/sysmoOCTSIM/gcc/Makefile
+++ b/sysmoOCTSIM/gcc/Makefile
@@ -47,6 +47,7 @@
 
 # List the subdirectories for creating object files
 SUB_DIRS +=  \
+	ccid \
 	dma_m2m \
 	gcc \
 	gcc/gcc \
@@ -74,6 +75,7 @@
 INC_DIRS = \
 	-I"../" \
 	-I"../CMSIS/Core/Include" \
+	-I"../ccid" \
 	-I"../config" \
 	-I"../dma_m2m" \
 	-I"../hal/include" \
@@ -103,6 +105,8 @@
 
 # List the object files
 OBJS +=  \
+	ccid/ccid_proto.o \
+	ccid/ccid_device.o \
 	atmel_start.o \
 	command.o \
 	dma_m2m/dma_memory.o \