# This Makefile can be used with Microsoft Visual Studio's nmake using the command:
#    nmake /f Makefile.Microsoft_nmake

LIBRARY = libsphincs-sha2-128f-simple_clean.lib
OBJECTS = address.obj context_sha2.obj fors.obj hash_sha2.obj merkle.obj sign.obj thash_sha2_simple.obj utils.obj utilsx1.obj wots.obj wotsx1.obj

CFLAGS = /nologo /O2 /I ..\..\..\common /W4 /WX

all: $(LIBRARY)

$(OBJECTS): *.h



$(LIBRARY): $(OBJECTS) 
	LIB.EXE /NOLOGO /WX /OUT:$@ $**

clean:
	-DEL $(OBJECTS)
	-DEL $(LIBRARY)

