File: Makefile

package info (click to toggle)
vcftools 0.1.9-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,396 kB
  • sloc: perl: 10,233; cpp: 7,950; pascal: 751; makefile: 60; php: 43; sh: 12
file content (12 lines) | stat: -rw-r--r-- 459 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12

BIN = vcf-compare fill-aa vcf-annotate vcf-merge vcf-isec vcf-stats vcf-to-tab fill-an-ac \
    vcf-query vcf-convert vcf-subset vcf-validator vcf-concat vcf-sort
MOD = FaSlice.pm Vcf.pm VcfStats.pm

install:
	    @for i in $(BIN); do cp $(CURDIR)/$$i $(BINDIR)/$$i; done; \
        for i in $(MOD); do cp $(CURDIR)/$$i $(MODDIR)/$$i; done; 

clean:
		@for i in $(BIN); do rm -f $(BINDIR)/$$i; done; \
        for i in $(MOD); do rm -f $(MODDIR)/$$i; done;