mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
df4ff91c0e
* The ability to load the configuration from the current resource file (ie the application for now). * A scroll bar and size box that look right, even if they don't actually _do_ anything yet. * A load of other minor tweaks. [originally from svn r62]
87 lines
2.3 KiB
Makefile
87 lines
2.3 KiB
Makefile
# $Id: PuTTY.make,v 1.1.2.7 1999/02/28 02:38:40 ben Exp $
|
|
# This is the Makefile for building PuTTY for the Mac OS.
|
|
# Users of non-Mac systems will see some pretty strange characters around.
|
|
|
|
MAKEFILE = PuTTY.make
|
|
¥MondoBuild¥ = {MAKEFILE} # Make blank to avoid rebuilds when makefile is modified
|
|
Includes =
|
|
Sym¥68K =
|
|
ObjDir¥68K =
|
|
|
|
COptions = {Includes} {Sym¥68K}
|
|
|
|
Objects¥68K = ¶
|
|
"{ObjDir¥68K}mac.c.o" ¶
|
|
"{ObjDir¥68K}maccfg.c.o" ¶
|
|
"{ObjDir¥68K}macterm.c.o" ¶
|
|
"{ObjDir¥68K}misc.c.o" ¶
|
|
# "{ObjDir¥68K}ssh.c.o" ¶
|
|
# "{ObjDir¥68K}sshcrc.c.o" ¶
|
|
# "{ObjDir¥68K}sshdes.c.o" ¶
|
|
# "{ObjDir¥68K}sshmd5.c.o" ¶
|
|
# "{ObjDir¥68K}sshrand.c.o" ¶
|
|
# "{ObjDir¥68K}sshrsa.c.o" ¶
|
|
# "{ObjDir¥68K}sshsha.c.o" ¶
|
|
# "{ObjDir¥68K}telnet.c.o" ¶
|
|
"{ObjDir¥68K}terminal.c.o"
|
|
|
|
|
|
PuTTY ÄÄ {¥MondoBuild¥} {Objects¥68K}
|
|
Link ¶
|
|
-o {Targ} -d {Sym¥68K} ¶
|
|
{Objects¥68K} ¶
|
|
-t 'APPL' ¶
|
|
-c 'pTTY' ¶
|
|
#"{Libraries}MathLib.o" ¶
|
|
#"{CLibraries}Complex.o" ¶
|
|
"{CLibraries}StdCLib.o" ¶
|
|
"{Libraries}MacRuntime.o" ¶
|
|
"{Libraries}IntEnv.o" ¶
|
|
#"{Libraries}ToolLibs.o" ¶
|
|
"{Libraries}Interface.o"
|
|
|
|
|
|
PuTTY ÄÄ {¥MondoBuild¥} mac_res.r macresid.h
|
|
Rez mac_res.r -o {Targ} {Includes} -append
|
|
|
|
|
|
"{ObjDir¥68K}mac.c.o" Ä {¥MondoBuild¥} mac.c putty.h mac.h macresid.h
|
|
{C} mac.c -o {Targ} {COptions}
|
|
|
|
"{ObjDir¥68K}maccfg.c.o" Ä {¥MondoBuild¥} maccfg.c putty.h mac.h macresid.h
|
|
{C} maccfg.c -o {Targ} {COptions}
|
|
|
|
"{ObjDir¥68K}macterm.c.o" Ä {¥MondoBuild¥} macterm.c mac.h putty.h
|
|
{C} macterm.c -o {Targ} {COptions}
|
|
|
|
"{ObjDir¥68K}misc.c.o" Ä {¥MondoBuild¥} misc.c putty.h
|
|
{C} misc.c -o {Targ} {COptions}
|
|
|
|
"{ObjDir¥68K}ssh.c.o" Ä {¥MondoBuild¥} ssh.c
|
|
{C} ssh.c -o {Targ} {COptions}
|
|
|
|
"{ObjDir¥68K}sshcrc.c.o" Ä {¥MondoBuild¥} sshcrc.c
|
|
{C} sshcrc.c -o {Targ} {COptions}
|
|
|
|
"{ObjDir¥68K}sshdes.c.o" Ä {¥MondoBuild¥} sshdes.c
|
|
{C} sshdes.c -o {Targ} {COptions}
|
|
|
|
"{ObjDir¥68K}sshmd5.c.o" Ä {¥MondoBuild¥} sshmd5.c
|
|
{C} sshmd5.c -o {Targ} {COptions}
|
|
|
|
"{ObjDir¥68K}sshrand.c.o" Ä {¥MondoBuild¥} sshrand.c
|
|
{C} sshrand.c -o {Targ} {COptions}
|
|
|
|
"{ObjDir¥68K}sshrsa.c.o" Ä {¥MondoBuild¥} sshrsa.c
|
|
{C} sshrsa.c -o {Targ} {COptions}
|
|
|
|
"{ObjDir¥68K}sshsha.c.o" Ä {¥MondoBuild¥} sshsha.c
|
|
{C} sshsha.c -o {Targ} {COptions}
|
|
|
|
"{ObjDir¥68K}telnet.c.o" Ä {¥MondoBuild¥} telnet.c
|
|
{C} telnet.c -o {Targ} {COptions}
|
|
|
|
"{ObjDir¥68K}terminal.c.o" Ä {¥MondoBuild¥} terminal.c putty.h
|
|
{C} terminal.c -o {Targ} {COptions}
|
|
|