mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
0ab0a61830
[originally from svn r17]
57 lines
1.5 KiB
Makefile
57 lines
1.5 KiB
Makefile
# Makefile for PuTTY. Use `FWHACK=/DFWHACK' to cause the firewall hack
|
|
# to be built in. (requires rebuild of ssh.obj only)
|
|
|
|
CFLAGS = /nologo /W3 /YX /O2 /Yd /D_WINDOWS /DDEBUG /ML /Fd
|
|
|
|
.c.obj:
|
|
cl $(FWHACK) $(CFLAGS) /c $*.c
|
|
|
|
OBJS1 = window.obj windlg.obj terminal.obj telnet.obj misc.obj noise.obj
|
|
OBJS2 = ssh.obj sshcrc.obj sshdes.obj sshmd5.obj sshrsa.obj sshrand.obj
|
|
OBJS3 = sshsha.obj
|
|
RESRC = win_res.res
|
|
LIBS1 = advapi32.lib user32.lib gdi32.lib
|
|
LIBS2 = wsock32.lib comctl32.lib comdlg32.lib
|
|
|
|
putty.exe: $(OBJS1) $(OBJS2) $(OBJS3) $(RESRC) link.rsp
|
|
link /debug -out:putty.exe @link.rsp
|
|
|
|
puttyd.exe: $(OBJS1) $(OBJS2) $(OBJS3) $(RESRC) link.rsp
|
|
link /debug -out:puttyd.exe @link.rsp
|
|
|
|
link.rsp: makefile
|
|
echo /nologo /subsystem:windows > link.rsp
|
|
echo $(OBJS1) >> link.rsp
|
|
echo $(OBJS2) >> link.rsp
|
|
echo $(OBJS3) >> link.rsp
|
|
echo $(RESRC) >> link.rsp
|
|
echo $(LIBS1) >> link.rsp
|
|
echo $(LIBS2) >> link.rsp
|
|
|
|
window.obj: window.c putty.h win_res.h
|
|
windlg.obj: windlg.c putty.h ssh.h win_res.h
|
|
terminal.obj: terminal.c putty.h
|
|
telnet.obj: telnet.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
|
|
sshcrc.obj: sshcrc.c ssh.h
|
|
sshdes.obj: sshdes.c ssh.h
|
|
sshmd5.obj: sshmd5.c ssh.h
|
|
sshrsa.obj: sshrsa.c ssh.h
|
|
sshsha.obj: sshsha.c ssh.h
|
|
sshrand.obj: sshrand.c ssh.h
|
|
|
|
win_res.res: win_res.rc win_res.h putty.ico
|
|
rc $(FWHACK) -r win_res.rc
|
|
|
|
clean:
|
|
del *.obj
|
|
del *.exe
|
|
del *.res
|
|
del *.pch
|
|
del *.aps
|
|
del *.ilk
|
|
del *.pdb
|
|
del link.rsp
|