diff --git a/families/e5/8e5_hello_world.make b/families/e5/8e5_hello_world.make
deleted file mode 100644
index 632ae8df9472f8bd4220b8ded750ab52004fb570..0000000000000000000000000000000000000000
--- a/families/e5/8e5_hello_world.make
+++ /dev/null
@@ -1,19 +0,0 @@
-PROJECT=8e5_hello_world
-SOURCES=$(PROJECT).c
-MMCU=atxmega8e5
-F_CPU = 32000000
-TARGET = x8e5
-PROGRAMMER= atmelice_pdi
-
-CFLAGS=-mmcu=$(MMCU) -Wall -Os -DF_CPU=$(F_CPU)
-
-$(PROJECT).hex: $(PROJECT).out
-	avr-objcopy -O ihex $(PROJECT).out $(PROJECT).c.hex;\
-	avr-size --mcu=$(MMCU) --format=avr $(PROJECT).out
- 
-$(PROJECT).out: $(SOURCES)
-	avr-gcc $(CFLAGS) -I./ -o $(PROJECT).out $(SOURCES)
- 
-program: $(PROJECT).hex
-	avrdude -p $(TARGET) -c $(PROGRAMMER) -U flash:w:$(PROJECT).c.hex
-