Rename files

This commit is contained in:
2026-04-03 13:21:17 -07:00
parent aa4564fc55
commit 0671e17e8e
7 changed files with 17 additions and 17 deletions

View File

@@ -5,7 +5,7 @@ CFLAGS=-std=c11 -D_FILE_OFFSET_BITS=64 -D_POSIX_C_SOURCE=200112L -Wall -Wextra $
LD=gcc
LDFLAGS=$(DEBUG_FLAGS)
lambda: main.o parse.o term.o
lambda: main.o token.o lc.o
$(LD) $(LDFLAGS) -o $@ $^
%.o: %.c
@@ -17,6 +17,6 @@ clean:
.PHONY: clean
# Dependencies
main.o: parse.h term.h
parse.o: parse.h util.h
term.o: term.h
main.o: token.h lc.h
token.o: token.h util.h
lc.o: lc.h token.h