Implemented parse_words_file and generate_random

Program now ready for UI typing test to be implemented.
Updated Makefile to reflect changes in project.
Created debugger.c to more easily work on utilities.
This commit is contained in:
Aidan Haas
2022-11-07 21:08:47 -05:00
committed by GitHub
parent 66cd9d46d6
commit 9aef889343
5 changed files with 74 additions and 20 deletions
+2 -2
View File
@@ -7,8 +7,8 @@ LDLIBS = -lncurses
all: typing_test debugger
# Create executables
typing_test: typing_test.o string_helpers.o
$(CC) -o typing_test typing_test.o string_helpers.o $(LDLIBS)
typing_test: typing_test.o utilities.o
$(CC) -o typing_test typing_test.o utilities.o $(LDLIBS)
debugger: debugger.o utilities.o
$(CC) -o debugger debugger.o utilities.o