Start Task 2

This commit is contained in:
AZEN-SGG 2025-03-25 17:54:48 +03:00
parent 8a7aac7c23
commit de8589e39c
83 changed files with 1474 additions and 175 deletions

View file

@ -8,11 +8,11 @@ CFLAGS = -mfpmath=sse -fstack-protector-all -W -Wall -Wextra -Wunused \
-Wwrite-strings -Wno-long-long -std=gnu99 -Wstrict-prototypes \
-Wmissing-field-initializers -Wpointer-sign -O3
TARGET = a05.exe
TARGET = a05.out
OBJ = main.o array_io.o solve.o init_f.o
$(TARGET): $(OBJ)
gcc $(OBJ) -o $(TARGET) -lm -lssp
gcc $(OBJ) -o $(TARGET) -lm
main.o: main.c
@ -28,4 +28,4 @@ init_f.o: init_f.c
gcc $(CFLAGS) -c init_f.c
clean:
del *.o *.exe
rm *.o *.out