This repository has been archived on 2026-05-11. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
prog-104-p-06-2030/RecapThoseAnimals/Proficiencies/double_linked_list/Makefile
T
2026-04-30 23:42:34 +02:00

15 lines
241 B
Makefile

CC=gcc
CFLAGS=-Wall -Wextra -Werror -fsanitize=address -g
SRCS=main.c dlist.c dlist_merge_sort.c
OBJS=$(SRCS:.c=.o)
TARGET=dlist_merge_sort
all: $(TARGET)
$(TARGET): $(OBJS)
$(CC) $(CFLAGS) -o $@ $(OBJS)
clean:
$(RM) $(OBJS) $(TARGET)