home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-04-28 | 1008 b | 53 lines |
-
- ObjectFiles = o.match \
- o.header \
- o.module
- Project = MaskThrowback
- Libraries = C:o.msstubs
- Target = MaskThrow
-
- CCFlags = -ffa -depend !Depend -throwback -IC: -zM
- ObjAsmFlags = -throwback -NoCache -depend !Depend
- LinkFlags = -rmf -c++
- SqueezeFlags = -v
-
- CC = cc -c $(CCFlags)
- OBJASM = ObjAsm $(ObjAsmFlags)
- CMHG = CMHG $(CMHGFlags)
- LINK = Link $(LinkFlags)
- SQUEEZE = Squeeze $(SqueezeFlags)
-
-
- # Don't alter anything below this...
-
- .SUFFIXES: .o .c
-
- $(Target): $(ObjectFiles) $(Libraries)
- Echo -- Linked $(Target)
- $(LINK) -o $@ $(ObjectFiles) $(Libraries)
- $(SQUEEZE) $@
- Copy $@ Choices:Boot.PreDesk.MaskThrow ~CF
-
- .c.o:
- Echo -- Compiling $<
- $(CC) -o $@ $<
- .s.o:
- Echo -- Assembling $<
- $(OBJASM) -from $< -to $@
- .cmhg.o:
- Echo -- Assembling $<
- $(CMHG) $< $@
-
-
- # Dynamic dependencies:
- o.other: c.other
- o.match: c.match
- o.module: s.module
- o.module: OS:Hdr.Filter
- o.module: OS:Hdr.Types
- o.module: OS:Hdr.OS
- o.module: OS:Hdr.WIMP
- o.module: OS:Hdr.OSSpriteOp
- o.module: OS:Hdr.Font
- o.module: Masked
-