/Makefile.am
Makefile | 17 lines | 15 code | 2 blank | 0 comment | 0 complexity | 24ffef8ca372ed16dfae5f4438618e4f MD5 | raw file
1ACLOCAL_AMFLAGS = -I m4 2 3lib_LTLIBRARIES = libeve.la 4libeve_la_SOURCES = \ 5 chromosome.c \ 6 ga.c \ 7 individual.c \ 8 mt19937.c \ 9 operators.c \ 10 population.c \ 11 random.c \ 12 report.c 13 14bin_PROGRAMS = test-ga 15test_ga_SOURCES = test-ga.c 16test_ga_LDFLAGS = -lm 17test_ga_LDADD = libeve.la