mirror of
https://github.com/henrydcase/pqc.git
synced 2024-11-23 07:59:01 +00:00
17 lines
382 B
Makefile
17 lines
382 B
Makefile
# This Makefile can be used with Microsoft Visual Studio's nmake using the command:
|
|
# nmake /f Makefile.Microsoft_nmake
|
|
|
|
LIB=libkyber768_clean.lib
|
|
OBJECTS=cbd.obj indcpa.obj kem.obj ntt.obj poly.obj polyvec.obj precomp.obj reduce.obj verify.obj
|
|
|
|
CFLAGS=/I ..\..\..\common /W4 /WX
|
|
|
|
all: $(LIB)
|
|
|
|
$(LIB): $(OBJECTS)
|
|
LIB.EXE /OUT:$@ $**
|
|
|
|
clean:
|
|
DEL $(OBJECTS)
|
|
DEL $(LIB)
|