1 | # for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt |
---|
2 | .SUFFIXES: .o .c .cxx .depend |
---|
3 | OBJECTS = db_server.o |
---|
4 | |
---|
5 | $(MAIN): $(OBJECTS) |
---|
6 | $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS) |
---|
7 | |
---|
8 | .cxx.o: |
---|
9 | $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) |
---|
10 | |
---|
11 | clean: |
---|
12 | rm -f $(OBJECTS) *.a |
---|
13 | |
---|
14 | DEPENDS = $(OBJECTS:.o=.depend) |
---|
15 | depends: $(DEPENDS) |
---|
16 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
17 | @rm $(DEPENDS) |
---|
18 | $(DEPENDS): depend.init |
---|
19 | depend.init: |
---|
20 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
---|
21 | .c.depend: |
---|
22 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
23 | .cxx.depend: |
---|
24 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
25 | |
---|
26 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
---|
27 | |
---|
28 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
---|
29 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main) |
---|
30 | |
---|
31 | db_server.o: $(ARBHOME)/INCLUDE/ad_cb.h |
---|
32 | db_server.o: $(ARBHOME)/INCLUDE/ad_cb_prot.h |
---|
33 | db_server.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
34 | db_server.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
35 | db_server.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
36 | db_server.o: $(ARBHOME)/INCLUDE/arb_diff.h |
---|
37 | db_server.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
38 | db_server.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
39 | db_server.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
40 | db_server.o: $(ARBHOME)/INCLUDE/arb_sleep.h |
---|
41 | db_server.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
42 | db_server.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
43 | db_server.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
44 | db_server.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
45 | db_server.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
46 | db_server.o: $(ARBHOME)/INCLUDE/cb.h |
---|
47 | db_server.o: $(ARBHOME)/INCLUDE/cb_base.h |
---|
48 | db_server.o: $(ARBHOME)/INCLUDE/cbtypes.h |
---|
49 | db_server.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
50 | db_server.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
51 | db_server.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
52 | db_server.o: $(ARBHOME)/INCLUDE/servercntrl.h |
---|
53 | db_server.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
54 | db_server.o: $(ARBHOME)/INCLUDE/static_assert.h |
---|
55 | db_server.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
56 | db_server.o: $(ARBHOME)/INCLUDE/test_unit.h |
---|
57 | db_server.o: $(ARBHOME)/INCLUDE/ttypes.h |
---|
58 | db_server.o: $(ARBHOME)/INCLUDE/ut_valgrinded.h |
---|