From 3c441fd6c158e1a080d53d898444633a42bcacec Mon Sep 17 00:00:00 2001 From: Liam Waldron Date: Tue, 5 Dec 2023 07:42:14 -0500 Subject: [PATCH] yeah had to fix this one again --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 5ab9433..ce2a9f1 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ all: flex compiler/hell.l - gcc compiler/lex.yy.c -lfl + gcc lex.yy.c -lfl clean: - rm compiler/lex.yy.c compiler/a.out + rm lex.yy.c a.out