home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-12-06 | 1.4 KB | 66 lines |
- CC = cc
- #LINK = DRLink -debimage
- LINK = Link
-
- CCFlags = -c -fahi $(CCExtra) -depend !Depend -throwback -I,C:
- LinkFlags = -aif $(LinkExtra)
-
-
- # If you use EasyC, change 'C:Shell.o.ShellLib' in the next line to 'C:Shell.o.ShellEC'
- Librarys = C:Shell.o.ShellLib \
- DeskLib:o.DeskLib \
- C:o.Stubs \
-
- Target = !RunImage
-
- ObjectFiles = o.Main \
- o.Error \
-
-
- # path(s) to source files:
- VPATH = @.^ @
-
-
- # Don't alter anything below this...
-
- .SUFFIXES: .o .c
-
- $(Target): $(ObjectFiles) $(Librarys) MakeFile
- $(LINK) $(LinkFlags) -o $@ $(ObjectFiles) $(Librarys)
-
- .c.o:
- $(CC) $(ccFlags) -o $@ $<
-
- # Dynamic dependencies:
- o.Error: c.Error
- o.Error: DeskLib:h.Error
- o.Error: C:h.kernel
- o.Error: DeskLib:h.Core
- o.Error: DeskLib:h.WimpSWIs
- o.Error: DeskLib:h.Wimp
- o.Error: DeskLib:h.Event
- o.Main: c.Main
- o.Main: Desklib:h.Error
- o.Main: C:h.kernel
- o.Main: Desklib:h.Core
- o.Main: Desklib:h.WimpSWIs
- o.Main: Desklib:h.Wimp
- o.Main: C:Shell.h.RectSave
- o.Main: C:Shell.h.Shell
- o.Main: DeskLib:h.Coord
- o.Main: DeskLib:h.LinkList
- o.Main: C:Shell.h.TextRect
- o.Main: C:Shell.h.Printf
- o.Main: C:Shell.h.Array
- o.Main: C:Shell.h.FontLabel
- o.Main: C:Shell.h.Label
- o.Main: C:Shell.h.BlockRct
- o.Main: C:Shell.h.Extra
- o.Main: DeskLib:h.GFX
- o.Main: DeskLib:h.ColourTran
- o.Main: C:Shell.h.BarGraph
- o.Main: C:Shell.h.PlainRect
- o.Main: C:Shell.h.Shell
- o.Main: C:Shell.h.BarIcon
- o.Main: C:Shell.h.SpriteRect
-