a655ec8a9d
* Add state destroy to SHA2 API * Include optimized SPHINCS+ implementations I've generated new implementations from the sphincsplus repository. * Don't destroy sha256ctx after finalize * Attempt to shut up MSVC * Make sure to drop errors in rmtree
21 lines
671 B
Makefile
21 lines
671 B
Makefile
# This Makefile can be used with GNU Make or BSD Make
|
|
|
|
LIB=libsphincs-haraka-192f-simple_aesni.a
|
|
|
|
HEADERS = params.h address.h wots.h utils.h utilsx4.h fors.h api.h hash.h hashx4.h hash_state.h thash.h thashx4.h haraka.h
|
|
OBJECTS = address.o wots.o utils.o utilsx4.o fors.o sign.o hash_haraka.o thash_haraka_simple.o hash_harakax4.o thash_haraka_simplex4.o haraka.o
|
|
|
|
CFLAGS=-maes -O3 -Wall -Wconversion -Wextra -Wpedantic -Wvla -Werror -Wmissing-prototypes -Wredundant-decls -std=c99 -I../../../common $(EXTRAFLAGS)
|
|
|
|
all: $(LIB)
|
|
|
|
%.o: %.c $(HEADERS)
|
|
$(CC) $(CFLAGS) -c -o $@ $<
|
|
|
|
$(LIB): $(OBJECTS)
|
|
$(AR) -r $@ $(OBJECTS)
|
|
|
|
clean:
|
|
$(RM) $(OBJECTS)
|
|
$(RM) $(LIB)
|