source: tags/old_import_filter/SL/AP_TREE/Makefile

Last change on this file was 9575, checked in by westram, 11 years ago
  • effect of [9574] (comments only)
File size: 2.1 KB
Line 
1# INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben
2
3.SUFFIXES: .o .c .cxx .depend
4
5C_OBJECTS = 
6CPP_OBJECTS = AP_Tree.o
7OBJECTS=$(C_OBJECTS) $(CPP_OBJECTS)
8
9$(MAIN): $(OBJECTS)
10        $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)
11
12.cxx.o:
13        $(CPP) $(cflags) -c $< $(CPPINCLUDES) $(POST_COMPILE)
14
15.c.o:
16        $(ACC) $(cflags) -c $< $(AINCLUDES) $(POST_COMPILE)
17
18clean:
19        rm -f $(OBJECTS) *.a
20
21DEPENDS = $(OBJECTS:.o=.depend)
22depends: $(DEPENDS)
23        @cat $(DEPENDS) | grep -v '^#' >>Makefile
24        @rm $(DEPENDS)
25$(DEPENDS): depend.init
26depend.init:
27        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
28.c.depend:
29        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
30.cxx.depend:
31        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
32
33# DO NOT DELETE
34
35# Do not add dependencies manually - use 'make depend' in $ARBHOME
36# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from SL)
37
38AP_Tree.o: AP_Tree.hxx
39AP_Tree.o: $(ARBHOME)/INCLUDE/ad_prot.h
40AP_Tree.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
41AP_Tree.o: $(ARBHOME)/INCLUDE/AliView.hxx
42AP_Tree.o: $(ARBHOME)/INCLUDE/AP_filter.hxx
43AP_Tree.o: $(ARBHOME)/INCLUDE/AP_sequence.hxx
44AP_Tree.o: $(ARBHOME)/INCLUDE/arb_assert.h
45AP_Tree.o: $(ARBHOME)/INCLUDE/arb_core.h
46AP_Tree.o: $(ARBHOME)/INCLUDE/arb_error.h
47AP_Tree.o: $(ARBHOME)/INCLUDE/arb_msg.h
48AP_Tree.o: $(ARBHOME)/INCLUDE/arb_progress.h
49AP_Tree.o: $(ARBHOME)/INCLUDE/arb_string.h
50AP_Tree.o: $(ARBHOME)/INCLUDE/ARB_Tree.hxx
51AP_Tree.o: $(ARBHOME)/INCLUDE/arbdb.h
52AP_Tree.o: $(ARBHOME)/INCLUDE/arbdb_base.h
53AP_Tree.o: $(ARBHOME)/INCLUDE/arbdbt.h
54AP_Tree.o: $(ARBHOME)/INCLUDE/arbtools.h
55AP_Tree.o: $(ARBHOME)/INCLUDE/attributes.h
56AP_Tree.o: $(ARBHOME)/INCLUDE/aw_base.hxx
57AP_Tree.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
58AP_Tree.o: $(ARBHOME)/INCLUDE/aw_msg.hxx
59AP_Tree.o: $(ARBHOME)/INCLUDE/awt_attributes.hxx
60AP_Tree.o: $(ARBHOME)/INCLUDE/cxxforward.h
61AP_Tree.o: $(ARBHOME)/INCLUDE/downcast.h
62AP_Tree.o: $(ARBHOME)/INCLUDE/dupstr.h
63AP_Tree.o: $(ARBHOME)/INCLUDE/gccver.h
64AP_Tree.o: $(ARBHOME)/INCLUDE/smartptr.h
65AP_Tree.o: $(ARBHOME)/INCLUDE/static_assert.h
66AP_Tree.o: $(ARBHOME)/INCLUDE/test_global.h
Note: See TracBrowser for help on using the repository browser.