1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-01-09 17:38:00 +00:00

Added testback.c (not that it works).

Now compile with strict prototypes and optimisation (whee!).

[originally from svn r73]
This commit is contained in:
Ben Harris 1999-03-07 23:15:56 +00:00
parent c53d7fa688
commit a403857032

View File

@ -1,4 +1,4 @@
# $Id: PuTTY.make,v 1.1.2.7 1999/02/28 02:38:40 ben Exp $
# $Id: PuTTY.make,v 1.1.2.8 1999/03/07 23:15:56 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.
@ -8,7 +8,7 @@ Includes =
Sym¥68K =
ObjDir¥68K =
COptions = {Includes} {Sym¥68K}
COptions = {Includes} {Sym¥68K} -proto strict -opt all
Objects¥68K = ¶
"{ObjDir¥68K}mac.c.o" ¶
@ -23,7 +23,8 @@ Objects
# "{ObjDir¥68K}sshrsa.c.o" ¶
# "{ObjDir¥68K}sshsha.c.o" ¶
# "{ObjDir¥68K}telnet.c.o" ¶
"{ObjDir¥68K}terminal.c.o"
"{ObjDir¥68K}terminal.c.o" ¶
"{ObjDir¥68K}testback.c.o"
PuTTY ÄÄ {¥MondoBuild¥} {Objects¥68K}
@ -84,3 +85,6 @@ PuTTY
"{ObjDir¥68K}terminal.c.o" Ä {¥MondoBuild¥} terminal.c putty.h
{C} terminal.c -o {Targ} {COptions}
"{ObjDir¥68K}testback.c.o" Ä {¥MondoBuild¥} testback.c putty.h
{C} testback.c -o {Targ} {COptions}