File: Makefile

package info (click to toggle)
staden 2.0.0%2Bb11-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 21,584 kB
  • sloc: ansic: 240,605; tcl: 65,360; cpp: 12,854; makefile: 11,203; sh: 3,023; fortran: 2,033; perl: 63; awk: 46
file content (40 lines) | stat: -rw-r--r-- 982 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
SRCROOT=$(SRC)/..
include $(SRCROOT)/global.mk
include ../system.mk

all:
	@echo Nothing to build for scripts.

clean:
	@echo Nothing to clean for scripts.


cleanprogs:


cleanlibs:


spotless: clean cleanprogs cleanlibs


.PHONY: distsrc cleanprogs cleanlibs
distsrc: distsrc_dirs
	cp $(S)/gzip_trace $(S)/bzip_trace $(S)/bzip2_trace $(S)/assemble4 \
	   $(S)/fasta-split $(S)/fasta2exp $(S)/make_fasta $(S)/staden2exp \
	   $(S)/splitseq_da $(S)/staden_help $(S)/Makefile $(DIRNAME)

# Not all scripts are particularly useful, so don't bother to install these.

S=$(SRCROOT)/scripts
install:
#	cp $(S)/gzip_trace $(INSTALLSCRIPTS)
#	cp $(S)/bzip_trace $(INSTALLSCRIPTS)
#	cp $(S)/bzip2_trace $(INSTALLSCRIPTS)
	cp $(S)/assemble4 $(INSTALLSCRIPTS)
	cp $(S)/fasta-split $(INSTALLSCRIPTS)
	cp $(S)/fasta2exp $(INSTALLSCRIPTS)
#	cp $(S)/make_fasta $(INSTALLSCRIPTS)
#	cp $(S)/staden2exp $(INSTALLSCRIPTS)
	cp $(S)/splitseq_da $(INSTALLSCRIPTS)
	cp $(S)/staden_help $(INSTALLSCRIPTS)