| 1 | # INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben |
|---|
| 2 | |
|---|
| 3 | .SUFFIXES: .o .c .cxx .depend |
|---|
| 4 | |
|---|
| 5 | CPP_OBJECTS = a3.o a3_seq.o a3_ptree1.o a3_ptree2.o a3_helix.o a3_darray.o a3_ali.o \ |
|---|
| 6 | a3_matrix.o a3_arbdb.o a3_basen.o |
|---|
| 7 | C_OBJECTS= |
|---|
| 8 | |
|---|
| 9 | OBJECTS = $(CPP_OBJECTS) $(C_OBJECTS) |
|---|
| 10 | |
|---|
| 11 | $(MAIN): $(OBJECTS) |
|---|
| 12 | $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS) |
|---|
| 13 | |
|---|
| 14 | .cxx.o: |
|---|
| 15 | $(CPP) $(cflags) -c $< $(CPPINCLUDES) |
|---|
| 16 | |
|---|
| 17 | .c.o: |
|---|
| 18 | $(ACC) $(cflags) -c $< $(CPPINCLUDES) |
|---|
| 19 | |
|---|
| 20 | clean: |
|---|
| 21 | rm -f $(OBJECTS) *.a |
|---|
| 22 | |
|---|
| 23 | DEPENDS = $(OBJECTS:.o=.depend) |
|---|
| 24 | depends: $(DEPENDS) |
|---|
| 25 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
|---|
| 26 | @rm $(DEPENDS) |
|---|
| 27 | $(DEPENDS): depend.init |
|---|
| 28 | depend.init: |
|---|
| 29 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
|---|
| 30 | .c.depend: |
|---|
| 31 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
|---|
| 32 | .cxx.depend: |
|---|
| 33 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
|---|
| 34 | |
|---|
| 35 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
|---|
| 36 | |
|---|
| 37 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
|---|
| 38 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl |
|---|
| 39 | |
|---|
| 40 | a3.o: a3_ali.hxx |
|---|
| 41 | a3.o: a3_arbdb.hxx |
|---|
| 42 | a3.o: a3_darray.hxx |
|---|
| 43 | a3.o: a3_helix.hxx |
|---|
| 44 | a3.o: a3_ptree.hxx |
|---|
| 45 | a3.o: a3_seq.hxx |
|---|
| 46 | a3.o: a3_types.h |
|---|
| 47 | a3.o: $(ARBHOME)/INCLUDE/ad_k_prot.h |
|---|
| 48 | a3.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 49 | a3.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
|---|
| 50 | a3.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 51 | a3.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 52 | a3.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 53 | a3.o: $(ARBHOME)/INCLUDE/arbdbt.h |
|---|
| 54 | a3.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 55 | a3.o: $(ARBHOME)/INCLUDE/BI_helix.hxx |
|---|
| 56 | |
|---|
| 57 | a3_ali.o: a3_ali.hxx |
|---|
| 58 | a3_ali.o: a3_darray.hxx |
|---|
| 59 | a3_ali.o: a3_helix.hxx |
|---|
| 60 | a3_ali.o: a3_ptree.hxx |
|---|
| 61 | a3_ali.o: a3_seq.hxx |
|---|
| 62 | a3_ali.o: a3_types.h |
|---|
| 63 | |
|---|
| 64 | a3_arbdb.o: a3_arbdb.hxx |
|---|
| 65 | a3_arbdb.o: $(ARBHOME)/INCLUDE/ad_k_prot.h |
|---|
| 66 | a3_arbdb.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 67 | a3_arbdb.o: $(ARBHOME)/INCLUDE/ad_t_prot.h |
|---|
| 68 | a3_arbdb.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 69 | a3_arbdb.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 70 | a3_arbdb.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 71 | a3_arbdb.o: $(ARBHOME)/INCLUDE/arbdbt.h |
|---|
| 72 | a3_arbdb.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 73 | |
|---|
| 74 | a3_basen.o: a3_basen.h |
|---|
| 75 | |
|---|
| 76 | a3_darray.o: a3_darray.hxx |
|---|
| 77 | |
|---|
| 78 | a3_helix.o: a3_ali.hxx |
|---|
| 79 | a3_helix.o: a3_darray.hxx |
|---|
| 80 | a3_helix.o: a3_helix.hxx |
|---|
| 81 | a3_helix.o: a3_matrix.hxx |
|---|
| 82 | a3_helix.o: a3_ptree.hxx |
|---|
| 83 | a3_helix.o: a3_seq.hxx |
|---|
| 84 | a3_helix.o: a3_types.h |
|---|
| 85 | |
|---|
| 86 | a3_matrix.o: a3_darray.hxx |
|---|
| 87 | a3_matrix.o: a3_matrix.hxx |
|---|
| 88 | |
|---|
| 89 | a3_ptree1.o: a3_basen.h |
|---|
| 90 | a3_ptree1.o: a3_ptree.hxx |
|---|
| 91 | a3_ptree1.o: a3_seq.hxx |
|---|
| 92 | a3_ptree1.o: a3_types.h |
|---|
| 93 | a3_ptree1.o: $(ARBHOME)/INCLUDE/inline.h |
|---|
| 94 | |
|---|
| 95 | a3_ptree2.o: a3_basen.h |
|---|
| 96 | a3_ptree2.o: a3_ptree.hxx |
|---|
| 97 | a3_ptree2.o: a3_seq.hxx |
|---|
| 98 | a3_ptree2.o: a3_types.h |
|---|
| 99 | a3_ptree2.o: $(ARBHOME)/INCLUDE/inline.h |
|---|
| 100 | |
|---|
| 101 | a3_seq.o: a3_basen.h |
|---|
| 102 | a3_seq.o: a3_seq.hxx |
|---|
| 103 | a3_seq.o: a3_types.h |
|---|
| 104 | a3_seq.o: $(ARBHOME)/INCLUDE/ad_k_prot.h |
|---|
| 105 | a3_seq.o: $(ARBHOME)/INCLUDE/ad_prot.h |
|---|
| 106 | a3_seq.o: $(ARBHOME)/INCLUDE/arb_assert.h |
|---|
| 107 | a3_seq.o: $(ARBHOME)/INCLUDE/arbdb.h |
|---|
| 108 | a3_seq.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
|---|
| 109 | a3_seq.o: $(ARBHOME)/INCLUDE/attributes.h |
|---|
| 110 | a3_seq.o: $(ARBHOME)/INCLUDE/inline.h |
|---|