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