25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

21 satır
546 B

  1. # This Makefile can be used with GNU Make or BSD Make
  2. LIB=libsphincs-sha256-128f-robust_clean.a
  3. HEADERS = params.h address.h wots.h utils.h fors.h api.h hash.h thash.h sha256.h
  4. OBJECTS = address.o wots.o utils.o fors.o sign.o hash_sha256.o thash_sha256_robust.o sha256.o
  5. CFLAGS=-Wall -Wconversion -Wextra -Wpedantic -Werror -Wmissing-prototypes -std=c99 -I../../../common $(EXTRAFLAGS)
  6. all: $(LIB)
  7. %.o: %.c $(HEADERS)
  8. $(CC) $(CFLAGS) -c -o $@ $<
  9. $(LIB): $(OBJECTS)
  10. $(AR) -r $@ $(OBJECTS)
  11. clean:
  12. $(RM) $(OBJECTS)
  13. $(RM) $(LIB)