mirror of
https://github.com/neonz80/shallenge-x86.git
synced 2025-04-10 18:40:01 +03:00
12 lines
209 B
Makefile
12 lines
209 B
Makefile
TARGET = shallenge
|
|
SRC = shallenge.cpp sha256-x86.cpp
|
|
HEADERS = print.hpp
|
|
|
|
all : $(TARGET)
|
|
|
|
$(TARGET): Makefile $(SRC) $(HEADERS)
|
|
c++ -o $@ -O3 -msse4.1 -msha -std=c++20 $(SRC)
|
|
|
|
clean :
|
|
-@$(RM) -f $(TARGET)
|