You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

28 lines
299 B

  1. all:
  2. @cc \
  3. -std=c99 -pedantic \
  4. -Wall -Wextra \
  5. -O2 -funroll-loops \
  6. rng.c \
  7. u512.s fp.s \
  8. mont.c \
  9. csidh.c \
  10. main.c \
  11. -o main
  12. debug:
  13. cc \
  14. -std=c99 -pedantic \
  15. -Wall -Wextra \
  16. -g \
  17. rng.c \
  18. u512.s fp.s \
  19. mont.c \
  20. csidh.c \
  21. main.c \
  22. -o main
  23. clean:
  24. rm -f main