Last change
on this file was
13443,
checked in by westram, 10 years ago
|
- reintegrates 'vectorize' into 'trunk'
- adds vectorization check for gcc 4.9.x / NDEBUG compile
- adds:
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.5 KB
|
Line | |
---|
1 | .SUFFIXES: .o .c .depend |
---|
2 | |
---|
3 | SOURCE_FILES = $(wildcard *.c) |
---|
4 | |
---|
5 | OBJECTS = $(SOURCE_FILES:.c=.o) |
---|
6 | |
---|
7 | BINARY=$(ARBHOME)/bin/clustalw |
---|
8 | |
---|
9 | $(BINARY) : $(OBJECTS) |
---|
10 | $(A_CC) $(cflags) -o $@ $(OBJECTS) -lm |
---|
11 | |
---|
12 | .c.o: |
---|
13 | $(A_CC) $(cflags) -c -o $@ $< $(CC_INCLUDES) $(POST_COMPILE) $< |
---|
14 | |
---|
15 | clean: |
---|
16 | rm -f *.o $(BINARY) |
---|
17 | |
---|
18 | DEPENDS = $(OBJECTS:.o=.depend) |
---|
19 | depends: $(DEPENDS) |
---|
20 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
21 | @rm $(DEPENDS) |
---|
22 | $(DEPENDS): depend.init |
---|
23 | depend.init: |
---|
24 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
---|
25 | .c.depend: |
---|
26 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
27 | |
---|
28 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
---|
29 | |
---|
30 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
---|
31 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl (from GDE) |
---|
32 | |
---|
33 | alnscore.o: clustalw.h |
---|
34 | alnscore.o: general.h |
---|
35 | |
---|
36 | amenu.o: clustalw.h |
---|
37 | amenu.o: general.h |
---|
38 | |
---|
39 | calcgapcoeff.o: clustalw.h |
---|
40 | calcgapcoeff.o: general.h |
---|
41 | |
---|
42 | calcprf1.o: clustalw.h |
---|
43 | calcprf1.o: general.h |
---|
44 | |
---|
45 | calcprf2.o: clustalw.h |
---|
46 | calcprf2.o: general.h |
---|
47 | |
---|
48 | calctree.o: clustalw.h |
---|
49 | calctree.o: general.h |
---|
50 | |
---|
51 | clustalw.o: clustalw.h |
---|
52 | clustalw.o: general.h |
---|
53 | |
---|
54 | interface.o: clustalw.h |
---|
55 | interface.o: general.h |
---|
56 | interface.o: param.h |
---|
57 | |
---|
58 | malign.o: clustalw.h |
---|
59 | malign.o: general.h |
---|
60 | |
---|
61 | pairalign.o: clustalw.h |
---|
62 | pairalign.o: general.h |
---|
63 | |
---|
64 | prfalign.o: clustalw.h |
---|
65 | prfalign.o: general.h |
---|
66 | |
---|
67 | readmat.o: clustalw.h |
---|
68 | readmat.o: general.h |
---|
69 | readmat.o: matrices.h |
---|
70 | |
---|
71 | sequence.o: clustalw.h |
---|
72 | sequence.o: general.h |
---|
73 | |
---|
74 | showpair.o: clustalw.h |
---|
75 | showpair.o: general.h |
---|
76 | |
---|
77 | trees.o: clustalw.h |
---|
78 | trees.o: dayhoff.h |
---|
79 | trees.o: general.h |
---|
80 | |
---|
81 | util.o: clustalw.h |
---|
82 | util.o: general.h |
---|
Note: See
TracBrowser
for help on using the repository browser.