Index: Makefile
===================================================================
--- Makefile	(revision 5f4d9c3b32eea7b6643a751aa75bdb05b7d41576)
+++ Makefile	(revision cfdf333a512778a753f04c7ce616075f6059e7bb)
@@ -19,5 +19,4 @@
 components:
 	cd $(SRC_DIR)/lib && make; cd $(CUR_DIR)
-	
 	@for cmp in $(COMPONENTS); do\
 		cd $(SRC_DIR)/$$cmp && make; cd $(CUR_DIR); \
@@ -30,4 +29,5 @@
 .PHONY: configuration
 configuration:
+	cd $(CUR_DIR)/conf && make; cd $(CUR_DIR)
 
 .PHONY: libraries
@@ -41,5 +41,5 @@
 # ------------------------------------------------------------------
 .PHONY: clean
-clean: clean_components clean_documentation
+clean: clean_components clean_documentation clean_config
 	@echo "All files cleaned successfully!"
 
@@ -55,4 +55,8 @@
 	cd $(CUR_DIR)/doc && make clean; cd $(CUR_DIR)
 
+.PHONY: clean_config
+clean_config:
+	cd $(CUR_DIR)/conf && make clean; cd $(CUR_DIR)
+
 # ------------------------------------------------------------------
 # install section
@@ -60,5 +64,5 @@
 .PHONY: install
 install: all install_dirs install_components install_configuration install_libraries install_documentation install_share
-	
+
 .PHONY: install_dirs
 install_dirs:
