source: tags/cvs_2_svn/AWTI/Makefile

Last change on this file was 5225, checked in by westram, 17 years ago
  • changed names of linker commands
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.8 KB
Line 
1# INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben
2.SUFFIXES: .o .cxx .depend
3
4CPP_OBJECTS = AWTI_import.o \
5                      AWTI_export.o \
6
7$(MAIN): $(CPP_OBJECTS)
8        $(LINK_STATIC_LIB) $(MAIN) $(CPP_OBJECTS)
9.cxx.o:
10        $(CPP) $(cflags) -c $<  $(CPPINCLUDES)
11
12clean:
13        rm -f $(CPP_OBJECTS) *.a
14
15DEPENDS = $(CPP_OBJECTS:.o=.depend)
16depends: $(DEPENDS)
17        @cat $(DEPENDS) | grep -v '^#' >>Makefile
18        @rm $(DEPENDS)
19$(DEPENDS): depend.init
20depend.init:
21        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
22.c.depend:
23        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
24.cxx.depend:
25        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
26
27# DO NOT DELETE THIS LINE -- make depend depends on it.
28
29# Do not add dependencies manually - use 'make depend' in $ARBHOME
30# For formatting issues see SOURCE_TOOLS/fix_depends.pl
31
32AWTI_export.o: awti_exp_local.hxx
33AWTI_export.o: awti_export.hxx
34AWTI_export.o: $(ARBHOME)/INCLUDE/ad_prot.h
35AWTI_export.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
36AWTI_export.o: $(ARBHOME)/INCLUDE/arb_assert.h
37AWTI_export.o: $(ARBHOME)/INCLUDE/arbdb.h
38AWTI_export.o: $(ARBHOME)/INCLUDE/arbdbt.h
39AWTI_export.o: $(ARBHOME)/INCLUDE/attributes.h
40AWTI_export.o: $(ARBHOME)/INCLUDE/aw_awars.hxx
41AWTI_export.o: $(ARBHOME)/INCLUDE/aw_color_groups.hxx
42AWTI_export.o: $(ARBHOME)/INCLUDE/aw_device.hxx
43AWTI_export.o: $(ARBHOME)/INCLUDE/aw_global.hxx
44AWTI_export.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
45AWTI_export.o: $(ARBHOME)/INCLUDE/aw_position.hxx
46AWTI_export.o: $(ARBHOME)/INCLUDE/aw_root.hxx
47AWTI_export.o: $(ARBHOME)/INCLUDE/aw_window.hxx
48AWTI_export.o: $(ARBHOME)/INCLUDE/awt.hxx
49AWTI_export.o: $(ARBHOME)/INCLUDE/awt_pro_a_nucs.hxx
50AWTI_export.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
51AWTI_export.o: $(ARBHOME)/INCLUDE/awt_tree.hxx
52AWTI_export.o: $(ARBHOME)/INCLUDE/inline.h
53AWTI_export.o: $(ARBHOME)/INCLUDE/xml.hxx
54
55AWTI_import.o: awti_imp_local.hxx
56AWTI_import.o: awti_import.hxx
57AWTI_import.o: $(ARBHOME)/INCLUDE/ad_prot.h
58AWTI_import.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
59AWTI_import.o: $(ARBHOME)/INCLUDE/adGene.h
60AWTI_import.o: $(ARBHOME)/INCLUDE/arb_assert.h
61AWTI_import.o: $(ARBHOME)/INCLUDE/arbdb.h
62AWTI_import.o: $(ARBHOME)/INCLUDE/arbdbt.h
63AWTI_import.o: $(ARBHOME)/INCLUDE/attributes.h
64AWTI_import.o: $(ARBHOME)/INCLUDE/aw_device.hxx
65AWTI_import.o: $(ARBHOME)/INCLUDE/aw_global.hxx
66AWTI_import.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
67AWTI_import.o: $(ARBHOME)/INCLUDE/aw_position.hxx
68AWTI_import.o: $(ARBHOME)/INCLUDE/AW_rename.hxx
69AWTI_import.o: $(ARBHOME)/INCLUDE/aw_root.hxx
70AWTI_import.o: $(ARBHOME)/INCLUDE/aw_window.hxx
71AWTI_import.o: $(ARBHOME)/INCLUDE/awt.hxx
72AWTI_import.o: $(ARBHOME)/INCLUDE/awt_advice.hxx
73AWTI_import.o: $(ARBHOME)/INCLUDE/awt_changekey.hxx
74AWTI_import.o: $(ARBHOME)/INCLUDE/awt_sel_boxes.hxx
75AWTI_import.o: $(ARBHOME)/INCLUDE/GAGenomImport.h
76AWTI_import.o: $(ARBHOME)/INCLUDE/GEN.hxx
Note: See TracBrowser for help on using the repository browser.