diff --git a/worksheet1/README.md b/worksheet1/README.md
index 94cd09bfae1fe5d6c7122e57cf625aaf4b545e92..17705725146f02744f797c8a6043e1cbe9d3d575 100644
--- a/worksheet1/README.md
+++ b/worksheet1/README.md
@@ -196,27 +196,7 @@ The Makefile automates the compilation of all tasks for streamlined testing and
 
 **Sample Makefile:**
 ![Reference Image](image/Makefile.png)
-```
-all: task1 task1.2 task2.1 task2.2 task2.3
-
-task1: task1.o asm_io.o
-	gcc -m32 task1.o asm_io.o -o task1
-
-task1_2: task1.2.o asm_io.o
-	gcc -m32 task1.2.o asm_io.o -o task1.2
-
-task2_1: task2.1.o asm_io.o
-	gcc -m32 task2.1.o asm_io.o -o task2.1
 
-task2_2: task2.2.o asm_io.o
-	gcc -m32 task2.2.o asm_io.o -o task2.2
-
-task2_3: task2.3.o asm_io.o
-	gcc -m32 task2.3.o asm_io.o -o task2.3
-
-clean:
-	rm -f *.o task1 task1.2 task2.1 task2.2 task2.3
-```
 **Commands:**
 **Build the Kernel and ISO**
 ```