pqc/crypto_sign/sphincs-haraka-256s-robust/clean/Makefile

21 lines
586 B
Makefile
Raw Normal View History

2019-04-16 14:15:03 +01:00
# This Makefile can be used with GNU Make or BSD Make
LIB=libsphincs-haraka-256s-robust_clean.a
HEADERS = params.h address.h wots.h utils.h fors.h api.h hash.h hash_state.h thash.h haraka.h
2019-04-16 14:15:03 +01:00
OBJECTS = address.o wots.o utils.o fors.o sign.o hash_haraka.o thash_haraka_robust.o haraka.o
2019-05-20 15:12:01 +01:00
CFLAGS=-O3 -Wall -Wconversion -Wextra -Wpedantic -Wvla -Werror -Wmissing-prototypes -Wredundant-decls -std=c99 -I../../../common $(EXTRAFLAGS)
2019-04-16 14:15:03 +01:00
all: $(LIB)
%.o: %.c $(HEADERS)
$(CC) $(CFLAGS) -c -o $@ $<
$(LIB): $(OBJECTS)
$(AR) -r $@ $(OBJECTS)
clean:
$(RM) $(OBJECTS)
$(RM) $(LIB)