kirill-refactor

This commit is contained in:
2025-12-10 16:50:28 +07:00
parent cb9d0ac607
commit f3a5c1f658
114 changed files with 2066 additions and 0 deletions

13
mine/lab_1/Makefile Normal file
View File

@@ -0,0 +1,13 @@
CC = gcc
CFLAGS = -Wall -Wextra -O2
TARGET = task12
SRC = task12.c
all: $(TARGET)
$(TARGET): $(SRC)
$(CC) $(CFLAGS) -o $(TARGET) $(SRC)
clean:
rm -f $(TARGET) out.txt