1 | # INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben |
---|
2 | .SUFFIXES: .o .cxx .c .depend |
---|
3 | OBJECTS = names.o |
---|
4 | $(MAIN): $(OBJECTS) |
---|
5 | $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS) |
---|
6 | .c.o: |
---|
7 | $(ACC) $(cflags) -c $< $(AINCLUDES) |
---|
8 | .cxx.o: |
---|
9 | $(CPP) $(cflags) -I/opt/gcc.3.4.3/include/c++/3.4.3/include -c $< $(CPPINCLUDES) |
---|
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 |
---|
30 | |
---|
31 | names.o: names.h |
---|
32 | names.o: $(ARBHOME)/INCLUDE/ad_k_prot.h |
---|
33 | names.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
34 | names.o: $(ARBHOME)/INCLUDE/aisc_func_types.h |
---|
35 | names.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
36 | names.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
37 | names.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
38 | names.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
39 | names.o: $(ARBHOME)/INCLUDE/client.h |
---|
40 | names.o: $(ARBHOME)/INCLUDE/names_client.h |
---|
41 | names.o: $(ARBHOME)/INCLUDE/names_prototypes.h |
---|
42 | names.o: $(ARBHOME)/INCLUDE/names_server.h |
---|
43 | names.o: $(ARBHOME)/INCLUDE/server.h |
---|
44 | names.o: $(ARBHOME)/INCLUDE/servercntrl.h |
---|
45 | names.o: $(ARBHOME)/INCLUDE/struct_man.h |
---|