|
Last change
on this file was
2,
checked in by oldcode, 25 years ago
|
|
Initial revision
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Author Date Id Revision
|
|
File size:
375 bytes
|
| Line | |
|---|
| 1 | # INCLUDE und GLOBALS MAIN CC cflags werden von aussen uebergeben |
|---|
| 2 | |
|---|
| 3 | .SUFFIXES: .o .cxx |
|---|
| 4 | |
|---|
| 5 | |
|---|
| 6 | CPP_OBJECTS = eispack.o d_sign.o |
|---|
| 7 | |
|---|
| 8 | $(MAIN): $(CPP_OBJECTS) |
|---|
| 9 | $(AR) $(MAIN) $(CPP_OBJECTS) |
|---|
| 10 | |
|---|
| 11 | |
|---|
| 12 | |
|---|
| 13 | .cxx.o: |
|---|
| 14 | $(CPP) -O -c $< $(CPPINCLUDES) |
|---|
| 15 | |
|---|
| 16 | depend: |
|---|
| 17 | $(MAKEDEPEND) $(MAKEDEPENDINC) $(CPP_OBJECTS:.o=.cxx) |
|---|
| 18 | # DO NOT DELETE THIS LINE -- make depend depends on it. |
|---|
| 19 | |
|---|
| 20 | eispack.o: f2c.h |
|---|
| 21 | d_sign.o: f2c.h |
|---|
Note: See
TracBrowser
for help on using the repository browser.