1
0
mirror of https://git.tartarus.org/simon/putty.git synced 2025-06-30 11:02:48 -05: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<EFBFBD>68K =
ObjDir<EFBFBD>68K =
COptions = {Includes} {Sym<79>68K}
COptions = {Includes} {Sym<79>68K} -proto strict -opt all
Objects<EFBFBD>68K = <20>
"{ObjDir<69>68K}mac.c.o" <20>
@ -23,7 +23,8 @@ Objects
# "{ObjDir<69>68K}sshrsa.c.o" <20>
# "{ObjDir<69>68K}sshsha.c.o" <20>
# "{ObjDir<69>68K}telnet.c.o" <20>
"{ObjDir<69>68K}terminal.c.o"
"{ObjDir<69>68K}terminal.c.o" <20>
"{ObjDir<69>68K}testback.c.o"
PuTTY <20><> {<7B>MondoBuild<6C>} {Objects<74>68K}
@ -84,3 +85,6 @@ PuTTY
"{ObjDir<69>68K}terminal.c.o" <20> {<7B>MondoBuild<6C>} terminal.c putty.h
{C} terminal.c -o {Targ} {COptions}
"{ObjDir<69>68K}testback.c.o" <20> {<7B>MondoBuild<6C>} testback.c putty.h
{C} testback.c -o {Targ} {COptions}