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
2026-04-30 23:42:34 +02:00

16 lines
221 B
Makefile

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