https://github.com/ekg/freebayes
Raw File
Tip revision: 04d702cdb8098449bade25e27ca17df983fa3ead authored by Erik Garrison on 25 May 2010, 21:44:14 UTC
added bamBayes back into make all
Tip revision: 04d702c
Makefile
all:
	cd src && make
	cd src && make install

.PHONY: all

doc:
	doxygen doxygen.cfg

.PHONY: doc

clean:
	cd src && make clean
	rm -f bin/*
	rm -rf doc/*

.PHONY: clean
back to top