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-103-p-06-2030/recap_island/fundamentals/Makefile
T
2026-03-02 02:16:31 +01:00

10 lines
173 B
Makefile

CC = gcc
CFLAGS = -Wextra -Wall -Werror
SRCS = main.c quotes.c village_manager.c villagers.c
TARGET = main
all:
$(CC) -o $(TARGET) $(SRCS) $(CFLAGS)
clean:
rm $(TARGET)