source: tags/svn.1.5.4/SL/MATRIX/Makefile

Last change on this file was 7183, checked in by westram, 13 years ago

merges [7084] [7086] [7087] [7088] from refactor

  • added CORE lib
    • added arb_progress (unused yet)
    • moved some code from ARBDB to CORE
  • added tests to CORE lib
  • generate_all_links.sh
    • now tests link targets
    • able to replace links (if link stays the same, but target changes)
  • fixed perl interface
    • link with libCORE
    • DRYed LINUX.PL and DARWIN.PL
    • added wrapper functionality (ARBDB→CORE). Functions starting with GBC_ are wrappers for code that moved into libCORE (which is NOT xsub'd)
File size: 1.8 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 = AP_matrix.o
7OBJECTS=$(C_OBJECTS) $(CPP_OBJECTS)
8
9$(MAIN): $(OBJECTS)
10        $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)
11
12.cxx.o:
13        $(CPP) $(cflags) -c $< $(CPPINCLUDES) $(POST_COMPILE)
14
15.c.o:
16        $(ACC) $(cflags) -c $< $(AINCLUDES) $(POST_COMPILE)
17
18clean:
19        rm -f $(OBJECTS) *.a
20
21DEPENDS = $(OBJECTS:.o=.depend)
22depends: $(DEPENDS)
23        @cat $(DEPENDS) | grep -v '^#' >>Makefile
24        @rm $(DEPENDS)
25$(DEPENDS): depend.init
26depend.init:
27        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
28.c.depend:
29        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
30.cxx.depend:
31        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
32
33# DO NOT DELETE
34
35# Do not add dependencies manually - use 'make depend' in $ARBHOME
36# For formatting issues see SOURCE_TOOLS/fix_depends.pl
37
38AP_matrix.o: AP_matrix.hxx
39AP_matrix.o: $(ARBHOME)/INCLUDE/ad_prot.h
40AP_matrix.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
41AP_matrix.o: $(ARBHOME)/INCLUDE/arb_assert.h
42AP_matrix.o: $(ARBHOME)/INCLUDE/arb_core.h
43AP_matrix.o: $(ARBHOME)/INCLUDE/arb_error.h
44AP_matrix.o: $(ARBHOME)/INCLUDE/arb_msg.h
45AP_matrix.o: $(ARBHOME)/INCLUDE/arb_string.h
46AP_matrix.o: $(ARBHOME)/INCLUDE/arbdb.h
47AP_matrix.o: $(ARBHOME)/INCLUDE/arbdb_base.h
48AP_matrix.o: $(ARBHOME)/INCLUDE/arbdbt.h
49AP_matrix.o: $(ARBHOME)/INCLUDE/arbtools.h
50AP_matrix.o: $(ARBHOME)/INCLUDE/attributes.h
51AP_matrix.o: $(ARBHOME)/INCLUDE/aw_awar.hxx
52AP_matrix.o: $(ARBHOME)/INCLUDE/aw_base.hxx
53AP_matrix.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx
54AP_matrix.o: $(ARBHOME)/INCLUDE/aw_root.hxx
55AP_matrix.o: $(ARBHOME)/INCLUDE/aw_window.hxx
56AP_matrix.o: $(ARBHOME)/INCLUDE/cb.h
57AP_matrix.o: $(ARBHOME)/INCLUDE/dupstr.h
58AP_matrix.o: $(ARBHOME)/INCLUDE/smartptr.h
59AP_matrix.o: $(ARBHOME)/INCLUDE/test_global.h
Note: See TracBrowser for help on using the repository browser.