1
1
mirror of https://github.com/henrydcase/pqc.git synced 2024-11-23 07:59:01 +00:00
pqcrypto/crypto_sign/dilithium-iii/clean/Makefile.Microsoft_nmake

15 lines
239 B
Makefile
Raw Normal View History

2019-02-07 02:02:34 +00:00
LIB=libdilithium-iii_clean.lib
2019-02-07 02:14:10 +00:00
OBJECTS=ntt.obj packing.obj poly.obj polyvec.obj reduce.obj rounding.obj sign.obj
2019-02-07 02:02:34 +00:00
CFLAGS=/I ..\..\..\common /W1 /WX
all: $(LIB)
$(LIB): $(OBJECTS)
LIB.EXE /OUT:$@ $**
clean:
DEL $(OBJECTS)
DEL $(LIB)