/Makefile.am

http://github.com/jmbr/libeve · Makefile · 17 lines · 15 code · 2 blank · 0 comment · 0 complexity · 24ffef8ca372ed16dfae5f4438618e4f MD5 · raw file

  1. ACLOCAL_AMFLAGS = -I m4
  2. lib_LTLIBRARIES = libeve.la
  3. libeve_la_SOURCES = \
  4. chromosome.c \
  5. ga.c \
  6. individual.c \
  7. mt19937.c \
  8. operators.c \
  9. population.c \
  10. random.c \
  11. report.c
  12. bin_PROGRAMS = test-ga
  13. test_ga_SOURCES = test-ga.c
  14. test_ga_LDFLAGS = -lm
  15. test_ga_LDADD = libeve.la