Files
CodeObject/space/src-c/Makefile
2025-05-08 03:25:39 +09:00

16 lines
240 B
Makefile

CC = gcc
SRC_DIR = ./src
TARGET = main.c
BUILD_DIR = ../../build
OUTPUT = c.out
build:
$(CC) -o $(BUILD_DIR)/$(OUTPUT) -O2 -Wall -lm --std=c11 -fsanitize=address,leak,undefined $(SRC_DIR)/$(TARGET)
run: build
$(BUILD_DIR)/$(OUTPUT)