1 | # for variables passed from parent makefile see ../../SOURCE_TOOLS/parent_make.txt |
---|
2 | |
---|
3 | .SUFFIXES: .o .c .cxx .depend |
---|
4 | |
---|
5 | C_OBJECTS = |
---|
6 | CPP_OBJECTS = AliView.o |
---|
7 | OBJECTS=$(C_OBJECTS) $(CPP_OBJECTS) |
---|
8 | |
---|
9 | $(MAIN): $(OBJECTS) |
---|
10 | $(LINK_STATIC_LIB) $(MAIN) $(OBJECTS) |
---|
11 | |
---|
12 | .cxx.o: |
---|
13 | $(A_CXX) $(cflags) $(cxxflags) -c $< $(CXX_INCLUDES) $(POST_COMPILE) $< |
---|
14 | |
---|
15 | .c.o: |
---|
16 | $(A_CC) $(cflags) -c $< $(CC_INCLUDES) $(POST_COMPILE) $< |
---|
17 | |
---|
18 | clean: |
---|
19 | rm -f $(OBJECTS) *.a |
---|
20 | |
---|
21 | DEPENDS = $(OBJECTS:.o=.depend) |
---|
22 | depends: $(DEPENDS) |
---|
23 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
24 | @rm $(DEPENDS) |
---|
25 | $(DEPENDS): depend.init |
---|
26 | depend.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 (from SL) |
---|
37 | |
---|
38 | AliView.o: AliView.hxx |
---|
39 | AliView.o: $(ARBHOME)/INCLUDE/AP_filter.hxx |
---|
40 | AliView.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
41 | AliView.o: $(ARBHOME)/INCLUDE/arb_core.h |
---|
42 | AliView.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
43 | AliView.o: $(ARBHOME)/INCLUDE/arbtools.h |
---|
44 | AliView.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
45 | AliView.o: $(ARBHOME)/INCLUDE/cxxforward.h |
---|
46 | AliView.o: $(ARBHOME)/INCLUDE/dupstr.h |
---|
47 | AliView.o: $(ARBHOME)/INCLUDE/gccver.h |
---|
48 | AliView.o: $(ARBHOME)/INCLUDE/test_global.h |
---|