2nd_Sem_Bogachev/2025.02.14/02Ex/Makefile
2025-03-25 22:53:39 +03:00

38 lines
853 B
Makefile

CFLAGS = -mfpmath=sse \
-fstack-protector-all \
-W \
-Wall \
-Wextra \
-Wunused \
-Wcast-align \
-Werror \
-pedantic \
-pedantic-errors \
-Wfloat-equal \
-Wpointer-arith \
-Wformat-security \
-Wmissing-format-attribute \
-Wformat=1 \
-Wwrite-strings \
-Wcast-align \
-Wno-long-long \
-std=gnu99 \
-Wstrict-prototypes \
-Wmissing-prototypes \
-Wmissing-declarations \
-Wold-style-definition \
-Wdeclaration-after-statement \
-Wbad-function-cast \
-Wnested-externs \
-O3 \
-D_DEBUG -g \
-c
all: main.o array.o
gcc main.o array.o && rm *.o
main.o: main.c
gcc $(CFLAGS) main.c
array.o: array.c
gcc $(CFLAGS) array.c