Ver código fonte

Remove signature makefiles

tags/v0.0.1
Douglas Stebila 5 anos atrás
committed by Thom Wiggers
pai
commit
0703346ddc
Nenhuma chave conhecida encontrada para esta assinatura no banco de dados ID da chave GPG: 1BB0A7CE26E363
3 arquivos alterados com 1 adições e 30 exclusões
  1. +0
    -15
      crypto_sign/dilithium-iii/clean/GNUmakefile
  2. +0
    -14
      crypto_sign/dilithium-iii/clean/Makefile.Microsoft_nmake
  3. +1
    -1
      scripts_windows/build_all.bat

+ 0
- 15
crypto_sign/dilithium-iii/clean/GNUmakefile Ver arquivo

@@ -1,15 +0,0 @@
LIB=libdilithium-iii_clean.a

SOURCES=$(wildcard *.c)
OBJECTS=$(patsubst %.c,%.o,$(SOURCES))

CFLAGS=-Wall -Wextra -Wpedantic -Werror -std=c99 -I../../../common $(EXTRAFLAGS)

all: $(LIB)

$(LIB): $(OBJECTS)
$(AR) -r $@ $(OBJECTS)

clean:
$(RM) $(OBJECTS)
$(RM) $(LIB)

+ 0
- 14
crypto_sign/dilithium-iii/clean/Makefile.Microsoft_nmake Ver arquivo

@@ -1,14 +0,0 @@
LIB=libdilithium-iii_clean.lib

OBJECTS=ntt.obj packing.obj poly.obj polyvec.obj reduce.obj rounding.obj sign.obj

CFLAGS=/I ..\..\..\common /W1 /WX

all: $(LIB)

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

clean:
DEL $(OBJECTS)
DEL $(LIB)

+ 1
- 1
scripts_windows/build_all.bat Ver arquivo

@@ -5,7 +5,7 @@ SET EL=0
REM CALL "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community\VC\Auxiliary\Build\vcvars64.bat"
REM IF ERRORLEVEL 1 SET EL=1

FOR /D %%K IN (crypto_kem\* crypto_sign\*) DO (
FOR /D %%K IN (crypto_kem\*) DO (
FOR /D %%L IN (%%K\*) DO (
cd %%L
nmake /f Makefile.Microsoft_nmake clean


Carregando…
Cancelar
Salvar