home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-01-07 | 661 b | 36 lines |
- # Library-making makefile
-
- CCFlags = -c -fahi -depend !Depend -throwback -I,C:
- LibFileFlags = -c -o
-
- Target = ^.o.SHLib
-
- ObjectFiles = o.StubsHack \
- o.RedirectFn \
-
-
- # path(s) to source files:
- VPATH = @ @.^
-
- # Don't change the following
-
- .SUFFIXES: .o .c
-
- $(Target): $(ObjectFiles)
- LibFile $(LibFileFlags) $@ $(ObjectFiles)
-
- .c.o:
- cc $(ccFlags) -o $@ $<
-
-
- # Dynamic dependencies:
- o.HeapGraph: c.HeapGraph
- o.HeapGraph: C:h.kernel
- o.HeapGraph: C:StubsHack.h.StubsHack
- o.HeapGraph: C:StubsHack.h.HeapGraph
- o.StubsHack: c.StubsHack
- o.StubsHack: C:h.kernel
- o.StubsHack: C:StubsHack.h.StubsHack
- o.RedirectFn: c.RedirectFn
- o.RedirectFn: C:StubsHack.h.StubsHack
-