moving on screen

This commit is contained in:
Arthur Barraux
2024-09-22 15:05:21 +02:00
parent 868616b384
commit ca215da58e
3 changed files with 170 additions and 41 deletions
+2 -2
View File
@@ -10,7 +10,7 @@ BUILD_DIR=build
BUILD_FLAGS=-Wall -Wextra -pedantic
build: main.c main.h
build: main.c
if [ ! -d beluga-output ]; then mkdir beluga-output; fi
if [ ! -d beluga-output/build ]; then mkdir beluga-output/build; fi
$(CC) main.c -o $(BELUGA_OUTPUT)/$(BUILD_DIR)/beluga $(BUILD_FLAGS)
@@ -20,7 +20,7 @@ DEBUG_DIR=debug
DEBUG_FLAGS=-Wall -Wextra -pedantic -Werror -fsanitize=address,undefined -g
debug: main.c main.h
debug: main.c
if [ ! -d beluga-output ]; then mkdir beluga-output; fi
if [ ! -d beluga-output/debug ]; then mkdir beluga-output/debug; fi
$(CC) main.c -o $(BELUGA_OUTPUT)/$(DEBUG_DIR)/beluga $(DEBUG_FLAGS)