Sfoglia il codice sorgente

Add windows Makefiles

tags/v0.0.1
Joost Rijneveld 5 anni fa
parent
commit
2502ed604b
Non sono state trovate chiavi note per questa firma nel database ID Chiave GPG: A4FE39CF49CBC553
2 ha cambiato i file con 38 aggiunte e 0 eliminazioni
  1. +19
    -0
      crypto_sign/mqdss-48/clean/Makefile.Microsoft_nmake
  2. +19
    -0
      crypto_sign/mqdss-64/clean/Makefile.Microsoft_nmake

+ 19
- 0
crypto_sign/mqdss-48/clean/Makefile.Microsoft_nmake Vedi File

@@ -0,0 +1,19 @@
# This Makefile can be used with Microsoft Visual Studio's nmake using the command:
# nmake /f Makefile.Microsoft_nmake

LIBRARY=libmqdss-48_clean.lib
OBJECTS=gf31.obj mq.obj sign.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)

+ 19
- 0
crypto_sign/mqdss-64/clean/Makefile.Microsoft_nmake Vedi File

@@ -0,0 +1,19 @@
# This Makefile can be used with Microsoft Visual Studio's nmake using the command:
# nmake /f Makefile.Microsoft_nmake

LIBRARY=libmqdss-64_clean.lib
OBJECTS=gf31.obj mq.obj sign.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)

Caricamento…
Annulla
Salva