moving on screen
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user