diff --git a/Makefile b/Makefile
index 6b1c2c3c6a9455a080e5f17bc0d8a1458346502b..f328ca86f08f4f3ce034cc9a0cffdd52ba334d66 100644
--- a/Makefile
+++ b/Makefile
@@ -6,10 +6,11 @@ EELFS = $(addsuffix .elf, $(ELFS))
 
 .PHONY: all
 
-all: xargo $(EELFS)
-
+all: xargo $(EELFS) 
+	
 xargo:
 	xargo build --examples
 		
-%.elf:
-	cp $* $@
\ No newline at end of file
+%.elf : % 
+	cp $< $@
+