Blowfish patch, second attempt
[u/mdw/putty] / Makefile
... / ...
CommitLineData
1# Makefile for PuTTY. Use `FWHACK=/DFWHACK' to cause the firewall hack
2# to be built in. (requires rebuild of ssh.obj only)
3
4# Can also build with `VER=/DSNAPSHOT=1999-01-25' or
5# `VER=/DRELEASE=0.43' to get version numbering; otherwise you'll
6# get `Unidentified build'.
7
8CFLAGS = /nologo /W3 /YX /O2 /Yd /D_WINDOWS /DDEBUG /ML /Fd
9
10.c.obj:
11 cl $(FWHACK) $(CFLAGS) /c $*.c
12
13PUTTYOBJS = window.obj windlg.obj terminal.obj telnet.obj
14OBJS1 = misc.obj noise.obj
15OBJS2 = ssh.obj sshcrc.obj sshdes.obj sshmd5.obj sshrsa.obj sshrand.obj
16OBJS3 = sshsha.obj sshblowf.obj version.obj
17RESRC = win_res.res
18LIBS1 = advapi32.lib user32.lib gdi32.lib
19LIBS2 = wsock32.lib comctl32.lib comdlg32.lib
20
21putty.exe: $(PUTTYOBJS) $(OBJS1) $(OBJS2) $(OBJS3) $(RESRC) link.rsp
22 link /debug -out:putty.exe @link.rsp
23
24puttyd.exe: $(PUTTYOBJS) $(OBJS1) $(OBJS2) $(OBJS3) $(RESRC) link.rsp
25 link /debug -out:puttyd.exe @link.rsp
26
27link.rsp: makefile
28 echo /nologo /subsystem:windows > link.rsp
29 echo $(PUTTYOBJS) >> link.rsp
30 echo $(OBJS1) >> link.rsp
31 echo $(OBJS2) >> link.rsp
32 echo $(OBJS3) >> link.rsp
33 echo $(RESRC) >> link.rsp
34 echo $(LIBS1) >> link.rsp
35 echo $(LIBS2) >> link.rsp
36
37window.obj: window.c putty.h win_res.h
38windlg.obj: windlg.c putty.h ssh.h win_res.h
39terminal.obj: terminal.c putty.h
40telnet.obj: telnet.c putty.h
41misc.obj: misc.c putty.h
42noise.obj: noise.c putty.h ssh.h
43ssh.obj: ssh.c ssh.h putty.h
44sshcrc.obj: sshcrc.c ssh.h
45sshdes.obj: sshdes.c ssh.h
46sshmd5.obj: sshmd5.c ssh.h
47sshrsa.obj: sshrsa.c ssh.h
48sshsha.obj: sshsha.c ssh.h
49sshrand.obj: sshrand.c ssh.h
50sshblowf.obj: sshblowf.c ssh.h
51version.obj: versionpseudotarget
52 @echo (built version.obj)
53
54# Hack to force version.obj to be rebuilt always
55versionpseudotarget:
56 cl $(FWHACK) $(VER) $(CFLAGS) /c version.c
57
58win_res.res: win_res.rc win_res.h putty.ico
59 rc $(FWHACK) -r -DWIN32 -D_WIN32 -DWINVER=0x0400 win_res.rc
60
61clean:
62 del *.obj
63 del *.exe
64 del *.res
65 del *.pch
66 del *.aps
67 del *.ilk
68 del *.pdb
69 del *.rsp