mirror of
https://github.com/neonz80/shallenge-x86.git
synced 2025-04-10 18:40:01 +03:00
12 lines
239 B
Makefile
12 lines
239 B
Makefile
TARGET = shallenge.exe
|
|
SRC = shallenge.cpp sha256-x86.cpp
|
|
HEADERS = print.hpp
|
|
|
|
all : $(TARGET)
|
|
|
|
$(TARGET): Makefile.win32-msvc $(SRC) $(HEADERS)
|
|
cl -Fe$@ -EHsc -O2 -std:c++20 $(SRC)
|
|
|
|
clean :
|
|
-@del /Q $(TARGET) $(SRC:cpp=obj) 2>NUL:
|