Makefile.am 321 B

123456789101112
  1. # unittesting my ass
  2. AM_LDFLAGS = -lcrypto -lssl
  3. LDADD = ../libquestions.a
  4. check_PROGRAMS = test_qarith test_qstrings test_wiener test_pollard
  5. TESTS = $(check_PROGRAMS)
  6. test_qstrings_SOURCES = test_qstrings.c
  7. test_qarith_SOURCES = test_qarith.c
  8. test_wiener_SOURCES = test_wiener.c
  9. test_pollard_SOURCES = test_pollard.c