#/*************************************************************************/
#/*                                                                       */
#/* Copyright 2003, Living Circuit LLC.                                   */
#/*                                                                       */
#/* For academic use with the following condition:                        */
#/*                                                                       */
#/* Material is provided "as is" and "as available", without any          */
#/* warranty, and if you use it you do it at your own risk, with no       */
#/* support agreement expressed or implied.                               */
#/*                                                                       */
#/* Any other use of this software is contingent on having a valid and    */
#/* signed license agreement with Living Circuit (livingCircuit.com)      */
#/*                                                                       */
#/*  All other rights reserved.                                           */
#/*                                                                       */
#/*************************************************************************/
#/********************************************/
#/********************************************/
#/**                                        **/
#/**                                        **/
#/**     "pop_gen" reads does a long-       **/
#/**     term population simulation based   **/
#/**     on relative fitnesses and          **/
#/**     mutation probabilities.            **/
#/**                                        **/
#/**     Written by Michael Molla           **/
#/**     September, 2003                    **/
#/**                                        **/
#/**                                        **/
#/**                                        **/
#/*******************************************/
#/*******************************************/


all:synth_pop synth_pop_haploid

clean:
	rm synth_pop.exe synth_pop
	rm synth_pop_haploid.exe synth_pop_haploid
	make all

synth_pop:synth_pop.c synth_pop.h Makefile
	gcc -lm -O2 -o synth_pop synth_pop.c

synth_pop_haploid:synth_pop_haploid.c synth_pop.h Makefile
	gcc -lm -O2 -o synth_pop_haploid synth_pop_haploid.c

