|
Last change
on this file was
13998,
checked in by westram, 10 years ago
|
- partial update from 'trunk' into 'alilink'
- adds:
- log:branches/addtest@13123:13260,13523:13551,13570,13650:13653
- log:branches/check@13365:13375,13450:13457
- log:branches/check2@13458:13465
- log:branches/fix@13522:13588
- log:branches/fixres@13270:13326
- log:branches/pars@12938:13624,13628:13638
- log:branches/sativa@13202,13241,13263,13274,13304,13345
- log:branches/slv@13152:13190
- log:branches/vectorize@13428:13442
- log:trunk@13135:13694
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
722 bytes
|
| Line | |
|---|
| 1 | .SUFFIXES: .o .c .depend |
|---|
| 2 | |
|---|
| 3 | OBJECT = fastDNAml.o |
|---|
| 4 | TARGET = $(ARBHOME)/bin/fastdnaml |
|---|
| 5 | |
|---|
| 6 | all : $(TARGET) |
|---|
| 7 | |
|---|
| 8 | $(TARGET) : $(OBJECT) |
|---|
| 9 | $(A_CC) $(cflags) -o $@ $< -lm |
|---|
| 10 | |
|---|
| 11 | .c.o: |
|---|
| 12 | $(A_CC) $(cflags) -c -o $@ $< $(CC_INCLUDES) $(POST_COMPILE) $< |
|---|
| 13 | |
|---|
| 14 | clean: |
|---|
| 15 | rm -f $(OBJECT) $(TARGET) |
|---|
| 16 | |
|---|
| 17 | DEPENDS = $(OBJECT:.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 |
|---|
| 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 | fastDNAml.o: fastDNAml.h |
|---|
Note: See
TracBrowser
for help on using the repository browser.