author | Alan Dipert
<alan@dipert.org> 2024-04-28 19:58:30 UTC |
committer | Alan Dipert
<alan@dipert.org> 2024-04-28 19:58:30 UTC |
parent | c3edb179cd446d91c94b5bf613b24ded337f6428 |
Makefile | +2 | -2 |
diff --git a/Makefile b/Makefile index f9c084b..0ce713b 100644 --- a/Makefile +++ b/Makefile @@ -11,7 +11,7 @@ all: usbasic usbasic: lex.yy.o usbasic.tab.o types.o parse.o vec.o lines.o main.o $(CC) $(CFLAGS) -o usbasic lex.yy.o usbasic.tab.o types.o parse.o vec.o lines.o main.o -lgc -lfl -lreadline -lhistory -lines.o: lines.c lines.h vec.h parse.h +lines.o: lines.c lines.h vec.h usbasic.tab.h parse.h $(CC) $(CFLAGS) -c lines.c vec.o: vec.c vec.h @@ -23,7 +23,7 @@ types.o: types.c types.h parse.o: parse.c usbasic.tab.h parse.h types.h types.c $(CC) $(CFLAGS) -c parse.c -main.o: main.c parse.h vec.h +main.o: main.c usbasic.tab.h parse.h vec.h $(CC) $(CFLAGS) -c main.c lex.yy.o: lex.yy.c usbasic.tab.h