From 9b94cf8bc87360d769f5793d498db6e9faf411d6 Mon Sep 17 00:00:00 2001 From: Mihnea Firoiu Date: Mon, 3 Nov 2025 20:40:52 +0200 Subject: [PATCH] exec-shellcode/Makefile: Fix Makefile Fix: Utils directory is from now on being copied to output. Signed-off-by: Mihnea Firoiu --- .../memory-security/drills/tasks/exec-shellcode/Makefile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/chapters/data/memory-security/drills/tasks/exec-shellcode/Makefile b/chapters/data/memory-security/drills/tasks/exec-shellcode/Makefile index 35ad62412c..e087c739fe 100644 --- a/chapters/data/memory-security/drills/tasks/exec-shellcode/Makefile +++ b/chapters/data/memory-security/drills/tasks/exec-shellcode/Makefile @@ -2,9 +2,8 @@ PYTHON = python3 SCRIPT = generate_skels.py skels: - mkdir -p support/src - $(PYTHON) $(SCRIPT) --input ./solution/src --output ./support/src - $(PYTHON) $(SCRIPT) --input ./solution/tests --output ./support/tests + mkdir -p support + $(PYTHON) $(SCRIPT) --input ./solution --output ./support clean: rm -rf support/