source: branches/port5/NAMES/Makefile

Last change on this file was 5709, checked in by westram, 16 years ago
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 1.4 KB
Line 
1# INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben
2.SUFFIXES: .o .cxx .c .depend
3OBJECTS = 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
11clean:
12        rm -f $(OBJECTS) *.a
13
14DEPENDS = $(OBJECTS:.o=.depend)
15depends: $(DEPENDS)
16        @cat $(DEPENDS) | grep -v '^#' >>Makefile
17        @rm $(DEPENDS)
18$(DEPENDS): depend.init
19depend.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
31names.o: names.h
32names.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
33names.o: $(ARBHOME)/INCLUDE/ad_prot.h
34names.o: $(ARBHOME)/INCLUDE/aisc_func_types.h
35names.o: $(ARBHOME)/INCLUDE/arb_assert.h
36names.o: $(ARBHOME)/INCLUDE/arbdb.h
37names.o: $(ARBHOME)/INCLUDE/arbdb_base.h
38names.o: $(ARBHOME)/INCLUDE/attributes.h
39names.o: $(ARBHOME)/INCLUDE/client.h
40names.o: $(ARBHOME)/INCLUDE/names_client.h
41names.o: $(ARBHOME)/INCLUDE/names_prototypes.h
42names.o: $(ARBHOME)/INCLUDE/names_server.h
43names.o: $(ARBHOME)/INCLUDE/server.h
44names.o: $(ARBHOME)/INCLUDE/servercntrl.h
45names.o: $(ARBHOME)/INCLUDE/struct_man.h
Note: See TracBrowser for help on using the repository browser.