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.

29 lines
636 B

  1. noinst_PROGRAMS = contfrac e fibonacci legendre lucaslehmer nextprime perfnum pi
  2. contfrac_SOURCES = contfrac.cc
  3. contfrac_LDADD = ../src/libcln.la
  4. e_SOURCES = e.cc
  5. e_LDADD = ../src/libcln.la
  6. fibonacci_SOURCES = fibonacci.cc
  7. fibonacci_LDADD = ../src/libcln.la
  8. legendre_SOURCES = legendre.cc
  9. legendre_LDADD = ../src/libcln.la
  10. lucaslehmer_SOURCES = lucaslehmer.cc
  11. lucaslehmer_LDADD = ../src/libcln.la
  12. nextprime_SOURCES = nextprime.cc
  13. nextprime_LDADD = ../src/libcln.la
  14. perfnum_SOURCES = perfnum.cc
  15. perfnum_LDADD = ../src/libcln.la
  16. pi_SOURCES = pi.cc
  17. pi_LDADD = ../src/libcln.la
  18. AM_CPPFLAGS = -I../include -I$(top_srcdir)/include