Rationalised host key storage. Also started code reorg: persistent-state
[u/mdw/putty] / Makefile
1 # Visual C++ Makefile for PuTTY.
2 #
3 # Use `nmake' to build.
4 #
5
6 ##-- help
7 #
8 # Extra options you can set:
9 #
10 # - FWHACK=/DFWHACK
11 # Enables a hack that tunnels through some firewall proxies.
12 #
13 # - VER=/DSNAPSHOT=1999-01-25
14 # Generates executables whose About box report them as being a
15 # development snapshot.
16 #
17 # - VER=/DRELEASE=0.43
18 # Generates executables whose About box report them as being a
19 # release version.
20 #
21 # - COMPAT=/DWIN32S_COMPAT
22 # Generates a binary that works (minimally) with Win32s.
23 #
24 # - COMPAT=/DAUTO_WINSOCK
25 # Causes PuTTY to assume that <windows.h> includes its own WinSock
26 # header file, so that it won't try to include <winsock.h>.
27 #
28 # - COMPAT=/DWINSOCK_TWO
29 # Causes the PuTTY utilities to include <winsock2.h> instead of
30 # <winsock.h>, except Plink which _needs_ WinSock 2 so it already
31 # does this.
32 #
33 # - RCFL=/DASCIICTLS
34 # Uses ASCII rather than Unicode to specify the tab control in
35 # the resource file. Probably most useful when compiling with
36 # Cygnus/mingw32, whose resource compiler may have less of a
37 # problem with it.
38 #
39 ##--
40
41 CFLAGS = /nologo /W3 /YX /O2 /Yd /D_WINDOWS /DDEBUG /ML /Fd
42 # LFLAGS = /debug
43
44 # Use MSVC DLL
45 # CFLAGS = /nologo /W3 /YX /O2 /Yd /D_WINDOWS /DDEBUG /MD /Fd
46
47 # Disable debug and incremental linking
48 LFLAGS = /incremental:no
49
50 .c.obj:
51 cl $(COMPAT) $(FWHACK) $(CFLAGS) /c $*.c
52
53 OBJ=obj
54 RES=res
55
56 ##-- objects putty puttytel
57 GOBJS1 = window.$(OBJ) windlg.$(OBJ) terminal.$(OBJ)
58 GOBJS2 = xlat.$(OBJ) sizetip.$(OBJ)
59 ##-- objects putty puttytel plink
60 LOBJS1 = telnet.$(OBJ) raw.$(OBJ) ldisc.$(OBJ)
61 ##-- objects putty plink
62 POBJS = be_all.$(OBJ)
63 ##-- objects puttytel
64 TOBJS = be_nossh.$(OBJ)
65 ##-- objects plink
66 PLOBJS = plink.$(OBJ) windlg.$(OBJ)
67 ##-- objects pscp
68 SOBJS = scp.$(OBJ) windlg.$(OBJ) be_none.$(OBJ)
69 ##-- objects putty puttytel pscp plink
70 MOBJS = misc.$(OBJ) version.$(OBJ) winstore.$(OBJ)
71 ##-- objects putty pscp plink
72 OBJS1 = sshcrc.$(OBJ) sshdes.$(OBJ) sshmd5.$(OBJ) sshrsa.$(OBJ) sshrand.$(OBJ)
73 OBJS2 = sshsha.$(OBJ) sshblowf.$(OBJ) noise.$(OBJ) sshdh.$(OBJ) sshdss.$(OBJ)
74 OBJS3 = sshbn.$(OBJ) sshpubk.$(OBJ) ssh.$(OBJ) pageantc.$(OBJ) tree234.$(OBJ)
75 ##-- objects pageant
76 PAGE1 = pageant.$(OBJ) sshrsa.$(OBJ) sshpubk.$(OBJ) sshdes.$(OBJ) sshbn.$(OBJ)
77 PAGE2 = sshmd5.$(OBJ) version.$(OBJ) tree234.$(OBJ)
78 ##-- resources putty
79 PRESRC = win_res.$(RES)
80 ##-- resources puttytel
81 TRESRC = nosshres.$(RES)
82 ##-- resources pageant
83 PAGERC = pageant.$(RES)
84 ##-- resources pscp
85 SRESRC = scp.$(RES)
86 ##-- resources plink
87 LRESRC = plink.$(RES)
88 ##--
89
90 ##-- gui-apps
91 # putty
92 # puttytel
93 # pageant
94 ##-- console-apps
95 # pscp
96 # plink
97 ##--
98
99 LIBS1 = advapi32.lib user32.lib gdi32.lib
100 LIBS2 = comctl32.lib comdlg32.lib
101 LIBS3 = shell32.lib
102 SOCK1 = wsock32.lib
103 SOCK2 = ws2_32.lib
104
105 all: putty.exe puttytel.exe pscp.exe plink.exe pageant.exe
106
107 putty.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(POBJS) $(MOBJS) $(OBJS1) $(OBJS2) $(OBJS3) $(PRESRC) putty.rsp
108 link $(LFLAGS) -out:putty.exe @putty.rsp
109
110 puttytel.exe: $(GOBJS1) $(GOBJS2) $(LOBJS1) $(TOBJS) $(MOBJS) $(TRESRC) puttytel.rsp
111 link $(LFLAGS) -out:puttytel.exe @puttytel.rsp
112
113 pageant.exe: $(PAGE1) $(PAGE2) $(PAGERC) pageant.rsp
114 link $(LFLAGS) -out:pageant.exe @pageant.rsp
115
116 pscp.exe: $(SOBJS) $(MOBJS) $(OBJS1) $(OBJS2) $(OBJS3) $(SRESRC) pscp.rsp
117 link $(LFLAGS) -out:pscp.exe @pscp.rsp
118
119 plink.exe: $(LOBJS1) $(POBJS) $(PLOBJS) $(MOBJS) $(OBJS1) $(OBJS2) $(OBJS3) $(LRESRC) plink.rsp
120 link $(LFLAGS) -out:plink.exe @plink.rsp
121
122 putty.rsp: makefile
123 echo /nologo /subsystem:windows > putty.rsp
124 echo $(GOBJS1) >> putty.rsp
125 echo $(GOBJS2) >> putty.rsp
126 echo $(LOBJS1) >> putty.rsp
127 echo $(POBJS) >> putty.rsp
128 echo $(MOBJS) >> putty.rsp
129 echo $(OBJS1) >> putty.rsp
130 echo $(OBJS2) >> putty.rsp
131 echo $(OBJS3) >> putty.rsp
132 echo $(PRESRC) >> putty.rsp
133 echo $(LIBS1) >> putty.rsp
134 echo $(LIBS2) >> putty.rsp
135 echo $(SOCK1) >> putty.rsp
136
137 puttytel.rsp: makefile
138 echo /nologo /subsystem:windows > puttytel.rsp
139 echo $(GOBJS1) >> puttytel.rsp
140 echo $(GOBJS2) >> puttytel.rsp
141 echo $(LOBJS1) >> puttytel.rsp
142 echo $(TOBJS) >> puttytel.rsp
143 echo $(MOBJS) >> puttytel.rsp
144 echo $(TRESRC) >> puttytel.rsp
145 echo $(LIBS1) >> puttytel.rsp
146 echo $(LIBS2) >> puttytel.rsp
147 echo $(SOCK1) >> puttytel.rsp
148
149 pageant.rsp: makefile
150 echo /nologo /subsystem:windows > pageant.rsp
151 echo $(PAGE1) >> pageant.rsp
152 echo $(PAGE2) >> pageant.rsp
153 echo $(PAGERC) >> pageant.rsp
154 echo $(LIBS1) >> pageant.rsp
155 echo $(LIBS2) >> pageant.rsp
156 echo $(LIBS3) >> pageant.rsp
157
158 pscp.rsp: makefile
159 echo /nologo /subsystem:console > pscp.rsp
160 echo $(SOBJS) >> pscp.rsp
161 echo $(MOBJS) >> pscp.rsp
162 echo $(OBJS1) >> pscp.rsp
163 echo $(OBJS2) >> pscp.rsp
164 echo $(OBJS3) >> pscp.rsp
165 echo $(SRESRC) >> pscp.rsp
166 echo $(LIBS1) >> pscp.rsp
167 echo $(LIBS2) >> pscp.rsp
168 echo $(SOCK1) >> pscp.rsp
169
170 plink.rsp: makefile
171 echo /nologo /subsystem:console > plink.rsp
172 echo $(LOBJS1) >> plink.rsp
173 echo $(POBJS) >> plink.rsp
174 echo $(PLOBJS) >> plink.rsp
175 echo $(MOBJS) >> plink.rsp
176 echo $(OBJS1) >> plink.rsp
177 echo $(OBJS2) >> plink.rsp
178 echo $(OBJS3) >> plink.rsp
179 echo $(LRESRC) >> plink.rsp
180 echo $(LIBS1) >> plink.rsp
181 echo $(LIBS2) >> plink.rsp
182 echo $(SOCK2) >> plink.rsp
183
184 ##-- dependencies
185 window.$(OBJ): window.c putty.h win_res.h storage.h
186 windlg.$(OBJ): windlg.c putty.h ssh.h win_res.h storage.h
187 winstore.$(OBJ): winstore.c putty.h storage.h
188 terminal.$(OBJ): terminal.c putty.h
189 sizetip.$(OBJ): sizetip.c putty.h
190 telnet.$(OBJ): telnet.c putty.h
191 raw.$(OBJ): raw.c putty.h
192 xlat.$(OBJ): xlat.c putty.h
193 ldisc.$(OBJ): ldisc.c putty.h
194 misc.$(OBJ): misc.c putty.h
195 noise.$(OBJ): noise.c putty.h ssh.h storage.h
196 ssh.$(OBJ): ssh.c ssh.h putty.h tree234.h
197 sshcrc.$(OBJ): sshcrc.c ssh.h
198 sshdes.$(OBJ): sshdes.c ssh.h
199 sshmd5.$(OBJ): sshmd5.c ssh.h
200 sshrsa.$(OBJ): sshrsa.c ssh.h
201 sshsha.$(OBJ): sshsha.c ssh.h
202 sshrand.$(OBJ): sshrand.c ssh.h
203 sshblowf.$(OBJ): sshblowf.c ssh.h
204 sshdh.$(OBJ): sshdh.c ssh.h
205 sshdss.$(OBJ): sshdss.c ssh.h
206 sshbn.$(OBJ): sshbn.c ssh.h
207 sshpubk.$(OBJ): sshpubk.c ssh.h
208 scp.$(OBJ): scp.c putty.h
209 version.$(OBJ): version.c
210 be_all.$(OBJ): be_all.c
211 be_nossh.$(OBJ): be_nossh.c
212 be_none.$(OBJ): be_none.c
213 plink.$(OBJ): plink.c putty.h
214 pageant.$(OBJ): pageant.c ssh.h tree234.h
215 tree234.$(OBJ): tree234.c tree234.h
216 ##--
217
218 # Hack to force version.obj to be rebuilt always
219 version.obj: versionpseudotarget
220 @echo (built version.obj)
221 versionpseudotarget:
222 cl $(FWHACK) $(VER) $(CFLAGS) /c version.c
223
224 ##-- dependencies
225 win_res.$(RES): win_res.rc win_res.h putty.ico
226 ##--
227 win_res.$(RES):
228 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 win_res.rc
229
230 ##-- dependencies
231 nosshres.$(RES): nosshres.rc win_res.rc win_res.h putty.ico
232 ##--
233 nosshres.$(RES):
234 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 nosshres.rc
235
236 ##-- dependencies
237 scp.$(RES): scp.rc scp.ico
238 ##--
239 scp.$(RES):
240 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 scp.rc
241
242 ##-- dependencies
243 pageant.$(RES): pageant.rc pageant.ico pageants.ico
244 ##--
245 pageant.$(RES):
246 rc $(FWHACK) $(RCFL) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 pageant.rc
247
248 clean:
249 del *.obj
250 del *.exe
251 del *.res
252 del *.pch
253 del *.aps
254 del *.ilk
255 del *.pdb
256 del *.rsp
257 del *.dsp
258 del *.dsw
259 del *.ncb
260 del *.opt
261 del *.plg