pqc/crypto_kem/papabear-ephem/clean/Makefile.Microsoft_nmake

20 lines
452 B
Makefile
Raw Normal View History

2020-01-04 16:49:42 +00:00
# This Makefile can be used with Microsoft Visual Studio's nmake using the command:
# nmake /f Makefile.Microsoft_nmake
LIBRARY=libpapabear-ephem_clean.lib
OBJECTS = kem.obj melas_fec.obj ring.obj threebears.obj
CFLAGS=/nologo /I ..\..\..\common /W4 /WX
all: $(LIBRARY)
# Make sure objects are recompiled if headers change.
$(OBJECTS): *.h
$(LIBRARY): $(OBJECTS)
LIB.EXE /NOLOGO /WX /OUT:$@ $**
clean:
-DEL $(OBJECTS)
-DEL $(LIBRARY)