chundoong-lab-ta/SamsungDS22/submissions/HW2/scsc.lee/Makefile

13 lines
210 B
Makefile
Raw Normal View History

2022-09-29 18:01:45 +09:00
TARGET=main
OBJECTS=util.o mat_mul.o
CPPFLAGS=-std=c++11 -O3 -Wall -march=native -mavx2 -mfma -mavx512f -fopenmp
LDLIBS=-lm -pthread
all: $(TARGET)
$(TARGET): $(OBJECTS)
clean:
rm -rf $(TARGET) $(OBJECTS)