Compare commits

..

1 Commits
main ... main

Author SHA1 Message Date
ecb5f360e3 add highscore to gitignore 2025-12-02 10:35:34 +01:00
3 changed files with 2 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
highscores.txt

Binary file not shown.

View File

@ -29,7 +29,7 @@ program_obj_files = stack.o bintree.o numbers.o timer.o highscore.o
doble : main.o $(program_obj_files)
$(CC) $(FLAGS) $^ -o doble
$(program_obj_files): %.o: %.c
$(program_obj_filesobj_files): %.o: %.c
$(CC) -c $(FLAGS) $^ -o $@
# --------------------------