|
Last change
on this file was
13443,
checked in by westram, 11 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.1 KB
|
| Line | |
|---|
| 1 | .SUFFIXES: .o .c .depend |
|---|
| 2 | |
|---|
| 3 | OBJECTS = clustalv.o amenu.o myers.o sequence.o showpair.o \ |
|---|
| 4 | upgma.o util.o trees.o gcgcheck.o |
|---|
| 5 | |
|---|
| 6 | BINARY=$(ARBHOME)/bin/clustalv |
|---|
| 7 | |
|---|
| 8 | $(BINARY) : $(OBJECTS) |
|---|
| 9 | $(A_CC) $(cflags) -o $@ $(OBJECTS) -lm |
|---|
| 10 | |
|---|
| 11 | .c.o: |
|---|
| 12 | $(A_CC) $(cflags) -c -o $@ $< $(CC_INCLUDES) $(POST_COMPILE) $< |
|---|
| 13 | |
|---|
| 14 | clean: |
|---|
| 15 | rm -f $(OBJECTS) $(BINARY) |
|---|
| 16 | |
|---|
| 17 | DEPENDS = $(OBJECTS:.o=.depend) |
|---|
| 18 | depends: $(DEPENDS) |
|---|
| 19 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
|---|
| 20 | @rm $(DEPENDS) |
|---|
| 21 | $(DEPENDS): depend.init |
|---|
| 22 | depend.init: |
|---|
| 23 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
|---|
| 24 | .c.depend: |
|---|
| 25 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
|---|
| 26 | |
|---|
| 27 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
|---|
| 28 | |
|---|
| 29 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
|---|
| 30 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl (from GDE) |
|---|
| 31 | |
|---|
| 32 | amenu.o: clustalv.h |
|---|
| 33 | amenu.o: general.h |
|---|
| 34 | |
|---|
| 35 | clustalv.o: clustalv.h |
|---|
| 36 | clustalv.o: general.h |
|---|
| 37 | clustalv.o: matrices.h |
|---|
| 38 | |
|---|
| 39 | myers.o: clustalv.h |
|---|
| 40 | myers.o: general.h |
|---|
| 41 | |
|---|
| 42 | sequence.o: clustalv.h |
|---|
| 43 | sequence.o: general.h |
|---|
| 44 | |
|---|
| 45 | showpair.o: clustalv.h |
|---|
| 46 | showpair.o: general.h |
|---|
| 47 | |
|---|
| 48 | trees.o: clustalv.h |
|---|
| 49 | trees.o: general.h |
|---|
| 50 | |
|---|
| 51 | upgma.o: clustalv.h |
|---|
| 52 | upgma.o: general.h |
|---|
| 53 | |
|---|
| 54 | util.o: clustalv.h |
|---|
| 55 | util.o: general.h |
|---|
Note: See
TracBrowser
for help on using the repository browser.