X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/blobdiff_plain/7cca0d811c4d1b5bb346cd60fdfa461a558aefec..4d331a77f20f321f867f5907e2ffc06249378881:/Makefile diff --git a/Makefile b/Makefile index 91493569..13419307 100644 --- a/Makefile +++ b/Makefile @@ -21,6 +21,15 @@ # - COMPAT=/DWIN32S_COMPAT # Generates a binary that works (minimally) with Win32s. # +# - COMPAT=/DAUTO_WINSOCK +# Causes PuTTY to assume that includes its own WinSock +# header file, so that it won't try to include . +# +# - COMPAT=/DWINSOCK_TWO +# Causes the PuTTY utilities to include instead of +# , except Plink which _needs_ WinSock 2 so it already +# does this. +# # - RCFL=/DASCIICTLS # Uses ASCII rather than Unicode to specify the tab control in # the resource file. Probably most useful when compiling with @@ -45,53 +54,76 @@ OBJ=obj RES=res ##-- objects putty puttytel -GOBJS1 = window.$(OBJ) windlg.$(OBJ) terminal.$(OBJ) telnet.$(OBJ) raw.$(OBJ) -GOBJS2 = xlat.$(OBJ) ldisc.$(OBJ) sizetip.$(OBJ) -##-- objects putty -POBJS = ssh.$(OBJ) be_all.$(OBJ) +GOBJS1 = window.$(OBJ) windlg.$(OBJ) terminal.$(OBJ) +GOBJS2 = xlat.$(OBJ) sizetip.$(OBJ) +##-- objects putty puttytel plink +LOBJS1 = telnet.$(OBJ) raw.$(OBJ) ldisc.$(OBJ) +##-- objects putty plink +POBJS = be_all.$(OBJ) ##-- objects puttytel TOBJS = be_nossh.$(OBJ) +##-- objects plink +PLOBJS = plink.$(OBJ) windlg.$(OBJ) ##-- objects pscp -SOBJS = scp.$(OBJ) windlg.$(OBJ) ssh.$(OBJ) be_none.$(OBJ) -##-- objects putty puttytel pscp +SOBJS = scp.$(OBJ) windlg.$(OBJ) be_none.$(OBJ) +##-- objects putty puttytel pscp plink MOBJS = misc.$(OBJ) version.$(OBJ) -##-- objects putty pscp +##-- objects putty pscp plink OBJS1 = sshcrc.$(OBJ) sshdes.$(OBJ) sshmd5.$(OBJ) sshrsa.$(OBJ) sshrand.$(OBJ) OBJS2 = sshsha.$(OBJ) sshblowf.$(OBJ) noise.$(OBJ) sshdh.$(OBJ) sshdss.$(OBJ) -OBJS3 = sshbn.$(OBJ) sshpubk.$(OBJ) +OBJS3 = sshbn.$(OBJ) sshpubk.$(OBJ) ssh.$(OBJ) pageantc.$(OBJ) tree234.$(OBJ) +##-- objects pageant +PAGE1 = pageant.$(OBJ) sshrsa.$(OBJ) sshpubk.$(OBJ) sshdes.$(OBJ) sshbn.$(OBJ) +PAGE2 = sshmd5.$(OBJ) version.$(OBJ) tree234.$(OBJ) ##-- resources putty PRESRC = win_res.$(RES) ##-- resources puttytel TRESRC = nosshres.$(RES) +##-- resources pageant +PAGERC = pageant.$(RES) ##-- resources pscp SRESRC = scp.$(RES) +##-- resources plink +LRESRC = plink.$(RES) ##-- ##-- gui-apps # putty # puttytel +# pageant ##-- console-apps # pscp +# plink ##-- LIBS1 = advapi32.lib user32.lib gdi32.lib -LIBS2 = wsock32.lib comctl32.lib comdlg32.lib +LIBS2 = comctl32.lib comdlg32.lib +LIBS3 = shell32.lib +SOCK1 = wsock32.lib +SOCK2 = ws2_32.lib -all: putty.exe puttytel.exe pscp.exe +all: putty.exe puttytel.exe pscp.exe plink.exe pageant.exe -putty.exe: $(GOBJS1) $(GOBJS2) $(POBJS) $(MOBJS) $(OBJS1) $(OBJS2) $(OBJS3) $(PRESRC) putty.rsp +putty.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(POBJS) $(MOBJS) $(OBJS1) $(OBJS2) $(OBJS3) $(PRESRC) putty.rsp link $(LFLAGS) -out:putty.exe @putty.rsp -puttytel.exe: $(GOBJS1) $(GOBJS2) $(TOBJS) $(MOBJS) $(TRESRC) puttytel.rsp +puttytel.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(TOBJS) $(MOBJS) $(TRESRC) puttytel.rsp link $(LFLAGS) -out:puttytel.exe @puttytel.rsp +pageant.exe: $(PAGE1) $(PAGE2) $(PAGERC) pageant.rsp + link $(LFLAGS) -out:pageant.exe @pageant.rsp + pscp.exe: $(SOBJS) $(MOBJS) $(OBJS1) $(OBJS2) $(OBJS3) $(SRESRC) pscp.rsp link $(LFLAGS) -out:pscp.exe @pscp.rsp +plink.exe: $(LOBJS1) $(POBJS) $(PLOBJS) $(MOBJS) $(OBJS1) $(OBJS2) $(OBJS3) $(LRESRC) plink.rsp + link $(LFLAGS) -out:plink.exe @plink.rsp + putty.rsp: makefile echo /nologo /subsystem:windows > putty.rsp echo $(GOBJS1) >> putty.rsp echo $(GOBJS2) >> putty.rsp + echo $(LOBJS1) >> putty.rsp echo $(POBJS) >> putty.rsp echo $(MOBJS) >> putty.rsp echo $(OBJS1) >> putty.rsp @@ -100,16 +132,28 @@ putty.rsp: makefile echo $(PRESRC) >> putty.rsp echo $(LIBS1) >> putty.rsp echo $(LIBS2) >> putty.rsp + echo $(SOCK1) >> putty.rsp puttytel.rsp: makefile echo /nologo /subsystem:windows > puttytel.rsp echo $(GOBJS1) >> puttytel.rsp echo $(GOBJS2) >> puttytel.rsp + echo $(LOBJS1) >> puttytel.rsp echo $(TOBJS) >> puttytel.rsp echo $(MOBJS) >> puttytel.rsp echo $(TRESRC) >> puttytel.rsp echo $(LIBS1) >> puttytel.rsp echo $(LIBS2) >> puttytel.rsp + echo $(SOCK1) >> puttytel.rsp + +pageant.rsp: makefile + echo /nologo /subsystem:windows > pageant.rsp + echo $(PAGE1) >> pageant.rsp + echo $(PAGE2) >> pageant.rsp + echo $(PAGERC) >> pageant.rsp + echo $(LIBS1) >> pageant.rsp + echo $(LIBS2) >> pageant.rsp + echo $(LIBS3) >> pageant.rsp pscp.rsp: makefile echo /nologo /subsystem:console > pscp.rsp @@ -121,6 +165,21 @@ pscp.rsp: makefile echo $(SRESRC) >> pscp.rsp echo $(LIBS1) >> pscp.rsp echo $(LIBS2) >> pscp.rsp + echo $(SOCK1) >> pscp.rsp + +plink.rsp: makefile + echo /nologo /subsystem:console > plink.rsp + echo $(LOBJS1) >> plink.rsp + echo $(POBJS) >> plink.rsp + echo $(PLOBJS) >> plink.rsp + echo $(MOBJS) >> plink.rsp + echo $(OBJS1) >> plink.rsp + echo $(OBJS2) >> plink.rsp + echo $(OBJS3) >> plink.rsp + echo $(LRESRC) >> plink.rsp + echo $(LIBS1) >> plink.rsp + echo $(LIBS2) >> plink.rsp + echo $(SOCK2) >> plink.rsp ##-- dependencies window.$(OBJ): window.c putty.h win_res.h @@ -133,7 +192,7 @@ 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 +ssh.$(OBJ): ssh.c ssh.h putty.h tree234.h sshcrc.$(OBJ): sshcrc.c ssh.h sshdes.$(OBJ): sshdes.c ssh.h sshmd5.$(OBJ): sshmd5.c ssh.h @@ -150,6 +209,9 @@ version.$(OBJ): version.c be_all.$(OBJ): be_all.c be_nossh.$(OBJ): be_nossh.c be_none.$(OBJ): be_none.c +plink.$(OBJ): plink.c putty.h +pageant.$(OBJ): pageant.c ssh.h tree234.h +tree234.$(OBJ): tree234.c tree234.h ##-- # Hack to force version.obj to be rebuilt always @@ -176,6 +238,12 @@ scp.$(RES): scp.rc scp.ico scp.$(RES): rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 scp.rc +##-- dependencies +pageant.$(RES): pageant.rc pageant.ico pageants.ico +##-- +pageant.$(RES): + rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 pageant.rc + clean: del *.obj del *.exe @@ -185,3 +253,8 @@ clean: del *.ilk del *.pdb del *.rsp + del *.dsp + del *.dsw + del *.ncb + del *.opt + del *.plg