This commit is contained in:
Rens Pastoor
2025-05-27 22:41:46 +02:00
parent d141296aea
commit 11b391b8a1
416 changed files with 25232 additions and 0 deletions

21
C/C1/Makefile Normal file
View File

@@ -0,0 +1,21 @@
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)