Last change
on this file since 13443 was
13443,
checked in by westram, 11 years ago
|
- reintegrates 'vectorize' into 'trunk'
- adds vectorization check for gcc 4.9.x / NDEBUG compile
- adds:
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.1 KB
|
Rev | Line | |
---|
[10954] | 1 | # for variables passed from parent makefile see ../SOURCE_TOOLS/parent_make.txt |
---|
[141] | 2 | |
---|
[1617] | 3 | .SUFFIXES: .o .cxx .depend |
---|
[141] | 4 | |
---|
| 5 | |
---|
| 6 | CPP_OBJECTS = xml.o |
---|
| 7 | |
---|
| 8 | $(MAIN): $(CPP_OBJECTS) |
---|
[5225] | 9 | $(LINK_STATIC_LIB) $(MAIN) $(CPP_OBJECTS) |
---|
[141] | 10 | |
---|
| 11 | .cxx.o: |
---|
[13443] | 12 | $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) $< |
---|
[141] | 13 | |
---|
[4635] | 14 | clean: |
---|
| 15 | rm -f $(CPP_OBJECTS) *.a |
---|
| 16 | |
---|
[1617] | 17 | DEPENDS = $(CPP_OBJECTS:.o=.depend) |
---|
| 18 | depends: $(DEPENDS) |
---|
| 19 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
| 20 | @rm $(DEPENDS) |
---|
| 21 | $(DEPENDS): depend.init |
---|
| 22 | depend.init: |
---|
| 23 | $(MAKEDEPEND) $(MAKEDEPENDFLAGS) 2>/dev/null # remove dependencies |
---|
| 24 | .c.depend: |
---|
| 25 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
| 26 | .cxx.depend: |
---|
| 27 | $(MAKEDEPEND) -f- $(MAKEDEPENDFLAGS) $< 2>/dev/null >$@ |
---|
[141] | 28 | |
---|
| 29 | # DO NOT DELETE |
---|
| 30 | |
---|
[2338] | 31 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
---|
[9575] | 32 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl (from main) |
---|
[2338] | 33 | |
---|
| 34 | xml.o: xml.hxx |
---|
| 35 | xml.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
[6814] | 36 | xml.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
[7623] | 37 | xml.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
[5129] | 38 | xml.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
[9521] | 39 | xml.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
[6331] | 40 | xml.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
[9516] | 41 | xml.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
[6817] | 42 | xml.o: $(ARBHOME)/INCLUDE/test_global.h |
---|
Note: See
TracBrowser
for help on using the repository browser.