diff options
author | Nick Mathewson <nickm@torproject.org> | 2012-12-18 13:20:32 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-01-16 22:29:38 -0500 |
commit | fb497dfe9eecafdab149a53f1b7fdd8a1d3a76a0 (patch) | |
tree | 0eb481616cf4f8f01575d323d04d9980e9aa6988 /src/or/Makefile.nmake | |
parent | b7dd71619519237af1383ee7185846fad3a5cdbe (diff) | |
download | tor-fb497dfe9eecafdab149a53f1b7fdd8a1d3a76a0.tar.gz tor-fb497dfe9eecafdab149a53f1b7fdd8a1d3a76a0.zip |
Add missing objects to Makefile.nmake
Diffstat (limited to 'src/or/Makefile.nmake')
-rw-r--r-- | src/or/Makefile.nmake | 59 |
1 files changed, 50 insertions, 9 deletions
diff --git a/src/or/Makefile.nmake b/src/or/Makefile.nmake index 71d18c11b0..568c7455eb 100644 --- a/src/or/Makefile.nmake +++ b/src/or/Makefile.nmake @@ -9,15 +9,56 @@ LIBS = ..\..\..\build-alpha\lib\libevent.lib \ ..\..\..\build-alpha\lib\libz.lib \ ws2_32.lib advapi32.lib shell32.lib -LIBTOR_OBJECTS = buffers.obj channel.obj channeltls.obj circuitbuild.obj \ - circuitlist.obj circuitmux.obj circuitmux_ewma.obj circuituse.obj \ - command.obj config.obj connection.obj connection_edge.obj \ - connection_or.obj control.obj cpuworker.obj directory.obj \ - dirserv.obj dirvote.obj dns.obj dnsserv.obj geoip.obj hibernate.obj \ - main.obj microdesc.obj networkstatus.obj nodelist.obj onion.obj \ - policies.obj reasons.obj relay.obj rendclient.obj rendcommon.obj \ - rendmid.obj rendservice.obj rephist.obj router.obj routerlist.obj \ - routerparse.obj status.obj config_codedigest.obj ntmain.obj +LIBTOR_OBJECTS = \ + addressmap.obj \ + buffers.obj \ + channel.obj \ + channeltls.obj \ + circuitbuild.obj \ + circuitlist.obj \ + circuitmux.obj \ + circuitmux_ewma.obj \ + circuitstats.obj \ + circuituse.obj \ + command.obj \ + config.obj \ + config_codedigest.obj \ + confparse.obj \ + connection.obj \ + connection_edge.obj \ + connection_or.obj \ + control.obj \ + cpuworker.obj \ + directory.obj \ + dirserv.obj \ + dirvote.obj \ + dns.obj \ + dnsserv.obj \ + entrynodes.obj \ + geoip.obj \ + hibernate.obj \ + main.obj \ + microdesc.obj \ + networkstatus.obj \ + nodelist.obj \ + ntmain.obj \ + onion.obj \ + policies.obj \ + reasons.obj \ + relay.obj \ + rendclient.obj \ + rendcommon.obj \ + rendmid.obj \ + rendservice.obj \ + rephist.obj \ + replaycache.obj \ + router.obj \ + routerlist.obj \ + routerparse.obj \ + routerset.obj \ + statefile.obj \ + status.obj \ + transports.obj libtor.lib: $(LIBTOR_OBJECTS) lib $(LIBTOR_OBJECTS) /out:libtor.lib |