script edits

This commit is contained in:
2026-07-14 23:15:37 -05:00
parent 7f6ef0fdc2
commit c77d9e1725
7 changed files with 31 additions and 41 deletions

View File

@@ -18,6 +18,7 @@ $(TARGET): crt0.o main.o ../lib/rlibc.a
$(LD) $(LDFLAGS) -T linker.ld crt0.o main.o ../lib/rlibc.a -o $(TARGET)
clean:
rm -f *.o $(TARGET)
rm -f *.o $(TARGET) compile_commands.json
rm -rf .cache
.PHONY: all clean test