daily pastebin goal
3%
SHARE
TWEET

Freebayes makefile

a guest Aug 24th, 2012 35 Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. DESTDIR=/usr/local/bin
  2.  
  3. all:
  4.         cd src && $(MAKE)
  5.  
  6. debug:
  7.         cd src && $(MAKE) debug
  8.  
  9. install:
  10.         install -m 0755 bin/freebayes $(DESTDIR)
  11.         install -m 0755 bin/bamleftalign $(DESTDIR)
  12.  
  13. uninstall:
  14.         rm /usr/local/bin/freebayes /usr/local/bin/bamleftalign
  15.  
  16. clean:
  17.         cd src && $(MAKE) clean
  18.         rm -f bin/*
  19.  
  20. .PHONY: all install uninstall clean
RAW Paste Data
Pastebin PRO WINTER Special!
Get 40% OFF Pastebin PRO accounts!
Top