diff --git a/lib/c/Makefile b/lib/c/Makefile
index 11ed73820efbd532b65a102a6c6a28854d1fd469..4d7117ed6f12b6fc6113a486daa67fe5ccdf81e0 100644
--- a/lib/c/Makefile
+++ b/lib/c/Makefile
@@ -2,9 +2,9 @@ CC = gcc
 CFLAGS = -g -I .
 
 liblabcomm.a : labcomm.o labcomm_fd_reader_writer.o experimental/labcomm_udp_reader_writer.o \
-               experimental/udp_hack.o labcomm_thr_reader_writer.o ethaddr.o \
-               ThrottleDrv/ethernet_drv.o ThrottleDrv/throttle_drv.o
-#	ar -r liblabcomm.a labcomm.o labcomm_fd_reader_writer.o ethaddr.o
+               experimental/udp_hack.o experimental/ethaddr.o \
+               experimental/labcomm_thr_reader_writer.o \
+               experimental/ThrottleDrv/ethernet_drv.o experimental/ThrottleDrv/throttle_drv.o
 	ar -r liblabcomm.a $^
 
 labcomm.o : labcomm.c labcomm.h  labcomm_private.h
@@ -16,7 +16,7 @@ ethaddr.o: ethaddr.c
 %o: %c %h
 
 clean:
-	rm *.o experimental/*.o ThrottleDrv/*.o
+	rm *.o experimental/*.o experimental/ThrottleDrv/*.o
 
 distclean: clean
 	rm liblabcomm.a
diff --git a/lib/c/ThrottleDrv/display.h b/lib/c/experimental/ThrottleDrv/display.h
similarity index 100%
rename from lib/c/ThrottleDrv/display.h
rename to lib/c/experimental/ThrottleDrv/display.h
diff --git a/lib/c/ThrottleDrv/ethernet_drv.c b/lib/c/experimental/ThrottleDrv/ethernet_drv.c
similarity index 100%
rename from lib/c/ThrottleDrv/ethernet_drv.c
rename to lib/c/experimental/ThrottleDrv/ethernet_drv.c
diff --git a/lib/c/ThrottleDrv/ethernet_drv.h b/lib/c/experimental/ThrottleDrv/ethernet_drv.h
similarity index 100%
rename from lib/c/ThrottleDrv/ethernet_drv.h
rename to lib/c/experimental/ThrottleDrv/ethernet_drv.h
diff --git a/lib/c/ThrottleDrv/throttle_drv.c b/lib/c/experimental/ThrottleDrv/throttle_drv.c
similarity index 100%
rename from lib/c/ThrottleDrv/throttle_drv.c
rename to lib/c/experimental/ThrottleDrv/throttle_drv.c
diff --git a/lib/c/ThrottleDrv/throttle_drv.h b/lib/c/experimental/ThrottleDrv/throttle_drv.h
similarity index 100%
rename from lib/c/ThrottleDrv/throttle_drv.h
rename to lib/c/experimental/ThrottleDrv/throttle_drv.h
diff --git a/lib/c/ethaddr.c b/lib/c/experimental/ethaddr.c
similarity index 100%
rename from lib/c/ethaddr.c
rename to lib/c/experimental/ethaddr.c
diff --git a/lib/c/ethaddr.h b/lib/c/experimental/ethaddr.h
similarity index 100%
rename from lib/c/ethaddr.h
rename to lib/c/experimental/ethaddr.h