home *** CD-ROM | disk | FTP | other *** search
Makefile | 1998-08-07 | 1.9 KB | 97 lines |
- # This makefile made by Makatic2
-
-
- ASMExtra=-PreDefine "DEBUG SETL {TRUE}"
-
-
- ObjectFiles = \
- o.handler \
- o.module \
-
-
- ProjectName = !Debug
-
-
- Target = ^.NewBar.!NewBar.IbarPatch
-
- Libraries =
-
-
- CPPFlags = $(CPPExtra) -ffa -depend !Depend -throwback \
- -IC: -D__swi -zM
- CCFlags = $(CCExtra) -ffa -depend !Depend -throwback -IC: -zM
- ASMFlags = $(ASMExtra) -stamp -nocache -closeexec -quit \
- -throwback -depend !Depend
- CMHGFlags = $(CMHGExtra)
- LinkFlags = $(LinkExtra)
- LibFileFlags = $(LibFileExtra)
- SqueezeFlags = $(SqueezeExtra) -v
- CopyFlags = $(CopyExtra) ~CQR~V
-
- CPP = Makatic._C++ c++ -c $(CPPFlags)
- CC = cc -c $(CCFlags)
- ASM = ObjAsm $(ASMFlags)
- CMHG = CMHG $(CMHGFlags)
- LINK = Link -rmf -c++ $(LinkFlags)
- LIBFILE = LibFile -c $(LibFileFlags)
- SQUEEZE = Squeeze $(SqueezeFlags)
- COPY = Copy
-
-
-
- VPATH = @.^
- .SILENT:;
- .SUFFIXES: .o .s .c .c++
-
- $(Target): $(ObjectFiles) $(Libraries)
- Echo -- Linking $(Target)
- $(LINK) -o $@ $(ObjectFiles) $(Libraries)
- Echo
-
- .c++.o:
- Echo -- Compiling $<
- $(CPP) -o $@ $<
- Echo
- .c.o:
- Echo -- Compiling $<
- $(CC) -o $@ $<
- Echo
- .s.o:
- Echo -- Assembling $<
- $(ASM) -from $< -to $@
- Echo
- .cmhg.o:
- Echo -- Assembling $<
- $(CMHG) $< $@
- Echo
-
-
- # Dynamic dependencies:
- o.handler: ^.s.handler
- o.handler: OS:hdr.OSModule
- o.handler: OS:Hdr.Types
- o.handler: OS:Hdr.OS
- o.handler: OS:hdr.Wimp
- o.handler: OS:Hdr.OSSpriteOp
- o.handler: OS:Hdr.Font
- o.handler: OS:hdr.WimpReadSysInfo
- o.handler: ^.hdr.ibpatch
- o.handler: ^.hdr.debug
- o.handler: OS:hdr.FileSwitch
- o.handler: ^.hdr.ibpatch
- o.module: ^.s.module
- o.module: OS:hdr.OSModule
- o.module: OS:Hdr.Types
- o.module: OS:Hdr.OS
- o.module: OS:hdr.OSFind
- o.module: OS:Hdr.FileSwitch
- o.module: OS:hdr.OSFile
- o.module: OS:hdr.Wimp
- o.module: OS:Hdr.OSSpriteOp
- o.module: OS:Hdr.Font
- o.module: OS:hdr.WimpReadSysInfo
- o.module: ^.hdr.ibpatch
- o.module: ^.hdr.debug
- o.module: OS:hdr.FileSwitch
- o.module: ^.hdr.ibpatch
-