Files
T2-start-2025/C/C1/Makefile
Rens Pastoor 11b391b8a1 sync
2025-05-27 22:41:46 +02:00

21 lines
278 B
Makefile

NAME=main
FILES = $(wildcard *.c)
CC=gcc
SYMBOLS=-g -O0 -std=c99 -Wall -Werror -Wextra -pedantic -Wno-unused-parameter
.PHONY: clean
all: product
product: Makefile $(FILES)
$(CC) $(INC_DIRS) $(SYMBOLS) $(FILES) -o $(NAME)
run: product
./$(NAME)
clean:
rm -f $(NAME)