X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/672a82030653c435d79862bbfbc0fa66af80a704..ccbfb941a6124efb75b68313c86dd195cfab575f:/Makefile diff --git a/Makefile b/Makefile index 2f19ab26..2f263192 100644 --- a/Makefile +++ b/Makefile @@ -5,15 +5,18 @@ # `VER=/DRELEASE=0.43' to get version numbering; otherwise you'll # get `Unidentified build'. +# COMPAT=/DWIN32S_COMPAT will produce a binary that works (minimally) +# with Win32s + CFLAGS = /nologo /W3 /YX /O2 /Yd /D_WINDOWS /DDEBUG /ML /Fd .c.obj: - cl $(FWHACK) $(CFLAGS) /c $*.c + cl $(COMPAT) $(FWHACK) $(CFLAGS) /c $*.c -PUTTYOBJS = window.obj windlg.obj terminal.obj telnet.obj +PUTTYOBJS = window.obj windlg.obj terminal.obj telnet.obj raw.obj xlat.obj OBJS1 = misc.obj noise.obj OBJS2 = ssh.obj sshcrc.obj sshdes.obj sshmd5.obj sshrsa.obj sshrand.obj -OBJS3 = sshsha.obj sshblowf.obj version.obj +OBJS3 = sshsha.obj sshblowf.obj version.obj sizetip.obj RESRC = win_res.res LIBS1 = advapi32.lib user32.lib gdi32.lib LIBS2 = wsock32.lib comctl32.lib comdlg32.lib @@ -42,7 +45,10 @@ link.rsp: makefile window.obj: window.c putty.h win_res.h windlg.obj: windlg.c putty.h ssh.h win_res.h terminal.obj: terminal.c putty.h +sizetip.obj: sizetip.c putty.h telnet.obj: telnet.c putty.h +raw.obj: raw.c putty.h +xlat.obj: xlat.c putty.h misc.obj: misc.c putty.h noise.obj: noise.c putty.h ssh.h ssh.obj: ssh.c ssh.h putty.h