add gitignore and update make file

This commit is contained in:
D2A62006 2025-11-28 03:18:20 +01:00
parent b8b53c40d8
commit bcff2c2372
3 changed files with 12 additions and 6 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
doble_initial
*.o
*.exe

View File

@ -1 +1,2 @@
test;9999
player1;3999

View File

@ -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
# --------------------------