source: branches/port5/SL/AW_NAME/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: 2.3 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 = \
7        AW_rename.o \
8        AW_names_admin.o \
9
10OBJECTS=$(C_OBJECTS) $(CPP_OBJECTS)
11
12$(MAIN): $(OBJECTS)
13        $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)
14
15.cxx.o:
16        $(CPP) $(cflags) -c $< $(CPPINCLUDES)
17
18.c.o:
19        $(ACC) $(cflags) -c $< $(AINCLUDES)
20
21clean:
22        rm -f $(OBJECTS) *.a
23
24DEPENDS = $(OBJECTS:.o=.depend)
25depends: $(DEPENDS)
26        @cat $(DEPENDS) | grep -v '^#' >>Makefile
27        @rm $(DEPENDS)
28$(DEPENDS): depend.init
29depend.init:
30        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
31.c.depend:
32        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
33.cxx.depend:
34        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
35
36# DO NOT DELETE
37
38# Do not add dependencies manually - use 'make depend' in $ARBHOME
39# For formatting issues see SOURCE_TOOLS/fix_depends.pl
40
41AW_names_admin.o: AW_rename.hxx
42AW_names_admin.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
43AW_names_admin.o: $(ARBHOME)/INCLUDE/ad_prot.h
44AW_names_admin.o: $(ARBHOME)/INCLUDE/arb_assert.h
45AW_names_admin.o: $(ARBHOME)/INCLUDE/arbdb.h
46AW_names_admin.o: $(ARBHOME)/INCLUDE/arbdb_base.h
47AW_names_admin.o: $(ARBHOME)/INCLUDE/attributes.h
48AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_device.hxx
49AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
50AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_position.hxx
51AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_root.hxx
52AW_names_admin.o: $(ARBHOME)/INCLUDE/aw_window.hxx
53AW_names_admin.o: $(ARBHOME)/INCLUDE/awt.hxx
54AW_names_admin.o: $(ARBHOME)/INCLUDE/awt_advice.hxx
55
56AW_rename.o: AW_rename.hxx
57AW_rename.o: $(ARBHOME)/INCLUDE/ad_k_prot.h
58AW_rename.o: $(ARBHOME)/INCLUDE/ad_prot.h
59AW_rename.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
60AW_rename.o: $(ARBHOME)/INCLUDE/arb_assert.h
61AW_rename.o: $(ARBHOME)/INCLUDE/arbdb.h
62AW_rename.o: $(ARBHOME)/INCLUDE/arbdb_base.h
63AW_rename.o: $(ARBHOME)/INCLUDE/arbdbt.h
64AW_rename.o: $(ARBHOME)/INCLUDE/attributes.h
65AW_rename.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
66AW_rename.o: $(ARBHOME)/INCLUDE/aw_device.hxx
67AW_rename.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
68AW_rename.o: $(ARBHOME)/INCLUDE/aw_position.hxx
69AW_rename.o: $(ARBHOME)/INCLUDE/aw_root.hxx
70AW_rename.o: $(ARBHOME)/INCLUDE/aw_window.hxx
71AW_rename.o: $(ARBHOME)/INCLUDE/client.h
72AW_rename.o: $(ARBHOME)/INCLUDE/inline.h
73AW_rename.o: $(ARBHOME)/INCLUDE/names_client.h
74AW_rename.o: $(ARBHOME)/INCLUDE/servercntrl.h
Note: See TracBrowser for help on using the repository browser.