mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 13:43:47 +01:00
e802199cb3
We'll still need to tweak it so that it looks for includes and libraries somewhere more sensible than "where we happened to find them on Erinn's system"; so that tests and tools get built too; so that it's a bit documented; and so that we actually try running the output. Work done with Erinn Clark.
21 lines
626 B
Makefile
21 lines
626 B
Makefile
all: libor.lib libor-crypto.lib libor-event.lib
|
|
|
|
CFLAGS = /I ..\win32 /I ..\..\..\build-alpha\include
|
|
|
|
LIBOR_OBJECTS = address.obj compat.obj container.obj di_ops.obj \
|
|
log.obj memarea.obj mempool.obj procmon.obj util.obj \
|
|
util_codedigest.obj
|
|
|
|
LIBOR_CRYPTO_OBJECTS = aes.obj crypto.obj torgzip.obj tortls.obj
|
|
|
|
LIBOR_EVENT_OBJECTS = compat_libevent.obj
|
|
|
|
libor.lib: $(LIBOR_OBJECTS)
|
|
lib $(LIBOR_OBJECTS) /out:libor.lib
|
|
|
|
libor-crypto.lib: $(LIBOR_CRYPTO_OBJECTS)
|
|
lib $(LIBOR_CRYPTO_OBJECTS) /out:libor-crypto.lib
|
|
|
|
libor-event.lib: $(LIBOR_EVENT_OBJECTS)
|
|
lib $(LIBOR_EVENT_OBJECTS) /out:libor-event.lib
|