X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/29ea56b5df39f9a1fb68a0d4400cf51d1a799ab7..5bc238bbefc16c6d86a914aa5baa51d34acb20b3:/Makefile diff --git a/Makefile b/Makefile index 73ea2406..00157caa 100644 --- a/Makefile +++ b/Makefile @@ -5,15 +5,19 @@ # `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 raw.obj +POBJS1 = window.obj windlg.obj terminal.obj telnet.obj raw.obj +POBJS2 = xlat.obj ldisc.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 sizetip.c +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 @@ -23,15 +27,16 @@ SCPOBJS3 = sshrsa.obj sshrand.obj sshsha.obj sshblowf.obj version.obj all: putty.exe pscp.exe -putty.exe: $(PUTTYOBJS) $(OBJS1) $(OBJS2) $(OBJS3) $(RESRC) link.rsp +putty.exe: $(POBJS1) $(POBJS2) $(OBJS1) $(OBJS2) $(OBJS3) $(RESRC) link.rsp link /debug -out:putty.exe @link.rsp -puttyd.exe: $(PUTTYOBJS) $(OBJS1) $(OBJS2) $(OBJS3) $(RESRC) link.rsp +puttyd.exe: $(POBJS1) $(POBJS2) $(OBJS1) $(OBJS2) $(OBJS3) $(RESRC) link.rsp link /debug -out:puttyd.exe @link.rsp link.rsp: makefile echo /nologo /subsystem:windows > link.rsp - echo $(PUTTYOBJS) >> link.rsp + echo $(POBJS1) >> link.rsp + echo $(POBJS2) >> link.rsp echo $(OBJS1) >> link.rsp echo $(OBJS2) >> link.rsp echo $(OBJS3) >> link.rsp @@ -39,12 +44,14 @@ link.rsp: makefile echo $(LIBS1) >> link.rsp echo $(LIBS2) >> link.rsp -window.obj: window.c putty.h win_res.h sizetip.h +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 +ldisc.obj: ldisc.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