Parcourir la source

Remove signature makefiles

tags/v0.0.1
Douglas Stebila il y a 5 ans
committed by Thom Wiggers
Parent
révision
0703346ddc
Aucune clé connue n'a été trouvée dans la base pour cette signature ID de la clé GPG: 1BB0A7CE26E363
3 fichiers modifiés avec 1 ajouts et 30 suppressions
  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 Voir le fichier

@@ -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 Voir le fichier

@@ -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 Voir le fichier

@@ -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


Chargement…
Annuler
Enregistrer