1 | # for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt |
---|
2 | .SUFFIXES: .o .cxx .c .depend |
---|
3 | OBJECTS = names.o |
---|
4 | $(MAIN): $(OBJECTS) |
---|
5 | $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS) |
---|
6 | .c.o: |
---|
7 | $(A_CC) $(cflags) -c $< $(CC_INCLUDES) $(POST_COMPILE) $< |
---|
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 | names.o: names.h |
---|
32 | names.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
33 | names.o: $(ARBHOME)/INCLUDE/aisc_func_types.h |
---|
34 | names.o: $(ARBHOME)/INCLUDE/aisc_global.h |
---|
35 | names.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
36 | names.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
37 | names.o: $(ARBHOME)/INCLUDE/arb_error.h |
---|
38 | names.o: $(ARBHOME)/INCLUDE/arb_file.h |
---|
39 | names.o: $(ARBHOME)/INCLUDE/arb_mem.h |
---|
40 | names.o: $(ARBHOME)/INCLUDE/arb_msg.h |
---|
41 | names.o: $(ARBHOME)/INCLUDE/arb_sleep.h |
---|
42 | names.o: $(ARBHOME)/INCLUDE/arb_string.h |
---|
43 | names.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
44 | names.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
45 | names.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
46 | names.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
47 | names.o: $(ARBHOME)/INCLUDE/bytestring.h |
---|
48 | names.o: $(ARBHOME)/INCLUDE/client.h |
---|
49 | names.o: $(ARBHOME)/INCLUDE/client_types.h |
---|
50 | names.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
51 | names.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
52 | names.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
53 | names.o: $(ARBHOME)/INCLUDE/names_client.h |
---|
54 | names.o: $(ARBHOME)/INCLUDE/names_prototypes.h |
---|
55 | names.o: $(ARBHOME)/INCLUDE/names_server.h |
---|
56 | names.o: $(ARBHOME)/INCLUDE/server.h |
---|
57 | names.o: $(ARBHOME)/INCLUDE/servercntrl.h |
---|
58 | names.o: $(ARBHOME)/INCLUDE/smartptr.h |
---|
59 | names.o: $(ARBHOME)/INCLUDE/struct_man.h |
---|
60 | names.o: $(ARBHOME)/INCLUDE/test_global.h |
---|