source: tags/initial/EISPACK/Makefile

Last change on this file was 2, checked in by oldcode, 24 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
6CPP_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
16depend:
17        $(MAKEDEPEND) $(MAKEDEPENDINC) $(CPP_OBJECTS:.o=.cxx)
18# DO NOT DELETE THIS LINE -- make depend depends on it.
19
20eispack.o: f2c.h
21d_sign.o: f2c.h
Note: See TracBrowser for help on using the repository browser.