diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..b0d9419 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +doble_initial +*.o +*.exe \ No newline at end of file diff --git a/highscores.txt b/highscores.txt index 4edd5a7..dee6fad 100644 --- a/highscores.txt +++ b/highscores.txt @@ -1 +1,2 @@ +test;9999 player1;3999 diff --git a/makefile b/makefile index 1f15f75..5b2e04b 100644 --- a/makefile +++ b/makefile @@ -15,12 +15,6 @@ endif raylibfolder = ./raylib unityfolder = ./unity -# -------------------------- -# Initiales Programm bauen (zum ausprobieren) -# -------------------------- -doble_initial: - $(CC) -o doble_initial $(BINARIES)/libdoble_complete.a - # -------------------------- # Selbst implementiertes Programm bauen # -------------------------- @@ -32,6 +26,14 @@ doble : main.o $(program_obj_files) $(program_obj_filesobj_files): %.o: %.c $(CC) -c $(FLAGS) $^ -o $@ + +# -------------------------- +# Initiales Programm bauen (zum ausprobieren) +# -------------------------- +doble_initial: + $(CC) -o doble_initial $(BINARIES)/libdoble_complete.a + + # -------------------------- # Unit Tests # --------------------------