From 229af3fd5bf82c48b948d1bd69eada94af60536b Mon Sep 17 00:00:00 2001 From: Liam Waldron Date: Tue, 5 Dec 2023 07:41:13 -0500 Subject: [PATCH] fix makefile cause im dumb --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index f45f05e..5ab9433 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ all: - flex hell.l - gcc lex.yy.c -lfl + flex compiler/hell.l + gcc compiler/lex.yy.c -lfl clean: - rm lex.yy.c a.out + rm compiler/lex.yy.c compiler/a.out