From: simon Date: Fri, 2 Mar 2001 17:14:10 +0000 (+0000) Subject: Argh, sshrsa.c now depends on sshsha.c so Pageant needs it :-( X-Git-Url: https://git.distorted.org.uk/u/mdw/putty/commitdiff_plain/afc47154b2c41b1f983467a1bd34894f15c416e4 Argh, sshrsa.c now depends on sshsha.c so Pageant needs it :-( git-svn-id: svn://svn.tartarus.org/sgt/putty@970 cda61777-01e9-0310-a592-d414129be87e --- diff --git a/Makefile b/Makefile index a4ec1721..7d6bf7cf 100644 --- a/Makefile +++ b/Makefile @@ -87,6 +87,7 @@ OBJS4 = x11fwd.$(OBJ) sshaes.$(OBJ) ##-- objects pageant PAGE1 = pageant.$(OBJ) sshrsa.$(OBJ) sshpubk.$(OBJ) sshdes.$(OBJ) sshbn.$(OBJ) PAGE2 = sshmd5.$(OBJ) version.$(OBJ) tree234.$(OBJ) misc.$(OBJ) sshaes.$(OBJ) +PAGE3 = sshsha.$(OBJ) ##-- objects puttygen GEN1 = puttygen.$(OBJ) sshrsag.$(OBJ) sshprime.$(OBJ) sshdes.$(OBJ) GEN2 = sshbn.$(OBJ) sshmd5.$(OBJ) version.$(OBJ) sshrand.$(OBJ) noise.$(OBJ) @@ -130,7 +131,7 @@ putty.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(POBJS) $(MOBJS) $(MOBJ2) $(OBJS1) $(O puttytel.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(TOBJS) $(MOBJS) $(MOBJ2) $(PRESRC) puttytel.rsp link $(LFLAGS) -out:puttytel.exe -map:puttytel.map @puttytel.rsp -pageant.exe: $(PAGE1) $(PAGE2) $(PAGERC) pageant.rsp +pageant.exe: $(PAGE1) $(PAGE2) $(PAGE3) $(PAGERC) pageant.rsp link $(LFLAGS) -out:pageant.exe -map:pageant.map @pageant.rsp puttygen.exe: $(GEN1) $(GEN2) $(GEN3) $(GEN4) $(GENRC) puttygen.rsp @@ -179,6 +180,7 @@ pageant.rsp: makefile echo /nologo /subsystem:windows > pageant.rsp echo $(PAGE1) >> pageant.rsp echo $(PAGE2) >> pageant.rsp + echo $(PAGE3) >> pageant.rsp echo $(PAGERC) >> pageant.rsp echo $(LIBS1) >> pageant.rsp echo $(LIBS2) >> pageant.rsp