Files
prog-103-p-04-2030/HolidayTrip/Fundamentals/radar/Makefile
2026-02-11 13:20:47 +01:00

16 lines
302 B
Makefile

CC=gcc
SRC = radar.c main.c
CFLAGS= -Wall -Wextra -Werror
LDFLAGS= -fsanitize=address -g -lm
# Computes the basic main for tests
main: ${SRC}
gcc $(CFLAGS) $^ -o main -lm
#Check for memory errors/leaks and to use gdb
debug: ${SRC}
gcc $(CFLAGS) $^ -o debug $(LDFLAGS)
clean:
$(RM) main debug