source: trunk/SL/HELIX/Makefile

Last change on this file was 18959, checked in by westram, 3 years ago
  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 2.7 KB
RevLine 
[10954]1# for variables passed from parent makefile see ../../SOURCE_TOOLS/parent_make.txt
[3499]2
[18723]3.SUFFIXES: .o .cxx .depend
[3499]4
[18724]5OBJECTS = $(subst .cxx,.o,$(wildcard *.cxx))
[3499]6
7$(MAIN): $(OBJECTS)
[5225]8        $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS)
[3499]9
10.cxx.o:
[13443]11        $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) $<
[3499]12
13clean:
[4634]14        rm -f $(OBJECTS) *.a
[3499]15
16DEPENDS = $(OBJECTS:.o=.depend)
17depends: $(DEPENDS)
18        @cat $(DEPENDS) | grep -v '^#' >>Makefile
19        @rm $(DEPENDS)
20$(DEPENDS): depend.init
21depend.init:
22        $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies
23.c.depend:
24        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
25.cxx.depend:
26        $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@
27
28# DO NOT DELETE
29
30# Do not add dependencies manually - use 'make depend' in $ARBHOME
[9575]31# For formatting issues see SOURCE_TOOLS/fix_depends.pl (from SL)
[3499]32
[7272]33BI_basepos.o: BI_basepos.hxx
34BI_basepos.o: $(ARBHOME)/INCLUDE/ad_prot.h
35BI_basepos.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
36BI_basepos.o: $(ARBHOME)/INCLUDE/arb_assert.h
37BI_basepos.o: $(ARBHOME)/INCLUDE/arb_core.h
38BI_basepos.o: $(ARBHOME)/INCLUDE/arb_error.h
[17534]39BI_basepos.o: $(ARBHOME)/INCLUDE/arb_global_defs.h
[15176]40BI_basepos.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7272]41BI_basepos.o: $(ARBHOME)/INCLUDE/arb_msg.h
42BI_basepos.o: $(ARBHOME)/INCLUDE/arb_string.h
43BI_basepos.o: $(ARBHOME)/INCLUDE/arbdb.h
44BI_basepos.o: $(ARBHOME)/INCLUDE/arbdb_base.h
45BI_basepos.o: $(ARBHOME)/INCLUDE/arbdbt.h
46BI_basepos.o: $(ARBHOME)/INCLUDE/arbtools.h
47BI_basepos.o: $(ARBHOME)/INCLUDE/attributes.h
[9521]48BI_basepos.o: $(ARBHOME)/INCLUDE/cxxforward.h
[10563]49BI_basepos.o: $(ARBHOME)/INCLUDE/downcast.h
[7272]50BI_basepos.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]51BI_basepos.o: $(ARBHOME)/INCLUDE/gccver.h
[7272]52BI_basepos.o: $(ARBHOME)/INCLUDE/smartptr.h
[10563]53BI_basepos.o: $(ARBHOME)/INCLUDE/static_assert.h
[18959]54BI_basepos.o: $(ARBHOME)/INCLUDE/stringize.h
[7272]55BI_basepos.o: $(ARBHOME)/INCLUDE/test_global.h
56
[3499]57BI_helix.o: BI_helix.hxx
58BI_helix.o: $(ARBHOME)/INCLUDE/ad_prot.h
59BI_helix.o: $(ARBHOME)/INCLUDE/ad_t_prot.h
60BI_helix.o: $(ARBHOME)/INCLUDE/arb_assert.h
[6814]61BI_helix.o: $(ARBHOME)/INCLUDE/arb_core.h
[6318]62BI_helix.o: $(ARBHOME)/INCLUDE/arb_error.h
[15176]63BI_helix.o: $(ARBHOME)/INCLUDE/arb_mem.h
[7183]64BI_helix.o: $(ARBHOME)/INCLUDE/arb_msg.h
65BI_helix.o: $(ARBHOME)/INCLUDE/arb_string.h
[3499]66BI_helix.o: $(ARBHOME)/INCLUDE/arbdb.h
[5709]67BI_helix.o: $(ARBHOME)/INCLUDE/arbdb_base.h
[3499]68BI_helix.o: $(ARBHOME)/INCLUDE/arbdbt.h
[6318]69BI_helix.o: $(ARBHOME)/INCLUDE/arbtools.h
[5129]70BI_helix.o: $(ARBHOME)/INCLUDE/attributes.h
[9521]71BI_helix.o: $(ARBHOME)/INCLUDE/cxxforward.h
[10563]72BI_helix.o: $(ARBHOME)/INCLUDE/downcast.h
[6331]73BI_helix.o: $(ARBHOME)/INCLUDE/dupstr.h
[9516]74BI_helix.o: $(ARBHOME)/INCLUDE/gccver.h
[6318]75BI_helix.o: $(ARBHOME)/INCLUDE/smartptr.h
[10563]76BI_helix.o: $(ARBHOME)/INCLUDE/static_assert.h
[18959]77BI_helix.o: $(ARBHOME)/INCLUDE/stringize.h
[6817]78BI_helix.o: $(ARBHOME)/INCLUDE/test_global.h
Note: See TracBrowser for help on using the repository browser.