Last change
on this file was
5709,
checked in by westram, 16 years ago
|
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
File size:
1.3 KB
|
Line | |
---|
1 | # INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben |
---|
2 | |
---|
3 | .SUFFIXES: .o .cxx .depend |
---|
4 | |
---|
5 | CPP_OBJECTS = WETC_main.o |
---|
6 | |
---|
7 | $(MAIN): $(CPP_OBJECTS) |
---|
8 | $(LINK_STATIC_LIB) $(MAIN) $(CPP_OBJECTS) |
---|
9 | |
---|
10 | .cxx.o: |
---|
11 | $(CPP) $(cflags) -c -o $@ $(@:.o=.cxx) $(CPPINCLUDES) |
---|
12 | |
---|
13 | clean: |
---|
14 | rm -f $(CPP_OBJECTS) *.a |
---|
15 | |
---|
16 | DEPENDS = $(CPP_OBJECTS:.o=.depend) |
---|
17 | depends: $(DEPENDS) |
---|
18 | @cat $(DEPENDS) | grep -v '^#' >>Makefile |
---|
19 | @rm $(DEPENDS) |
---|
20 | $(DEPENDS): depend.init |
---|
21 | depend.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 THIS LINE -- make depend depends on it. |
---|
29 | |
---|
30 | # Do not add dependencies manually - use 'make depend' in $ARBHOME |
---|
31 | # For formatting issues see SOURCE_TOOLS/fix_depends.pl |
---|
32 | |
---|
33 | WETC_main.o: $(ARBHOME)/INCLUDE/ad_k_prot.h |
---|
34 | WETC_main.o: $(ARBHOME)/INCLUDE/ad_prot.h |
---|
35 | WETC_main.o: $(ARBHOME)/INCLUDE/arb_assert.h |
---|
36 | WETC_main.o: $(ARBHOME)/INCLUDE/arbdb.h |
---|
37 | WETC_main.o: $(ARBHOME)/INCLUDE/arbdb_base.h |
---|
38 | WETC_main.o: $(ARBHOME)/INCLUDE/attributes.h |
---|
39 | WETC_main.o: $(ARBHOME)/INCLUDE/aw_device.hxx |
---|
40 | WETC_main.o: $(ARBHOME)/INCLUDE/aw_keysym.hxx |
---|
41 | WETC_main.o: $(ARBHOME)/INCLUDE/aw_position.hxx |
---|
42 | WETC_main.o: $(ARBHOME)/INCLUDE/aw_root.hxx |
---|
43 | WETC_main.o: $(ARBHOME)/INCLUDE/aw_window.hxx |
---|
44 | WETC_main.o: $(ARBHOME)/INCLUDE/awt.hxx |
---|
Note: See
TracBrowser
for help on using the repository browser.