aboutsummaryrefslogtreecommitdiff
path: root/libevent-2.0.20-stable/test/Makefile.nmake
blob: a899941ff4317b82df69c92fa5ab8cf42247413c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
CFLAGS=/I.. /I../WIN32-Code /I../include /I../compat /DWIN32 /DHAVE_CONFIG_H /DTINYTEST_LOCAL

CFLAGS=$(CFLAGS) /Ox /W3 /wd4996 /nologo

REGRESS_OBJS=regress.obj regress_buffer.obj regress_http.obj regress_dns.obj \
	regress_testutils.obj \
        regress_rpc.obj regress.gen.obj \
	regress_et.obj regress_bufferevent.obj \
	regress_listener.obj regress_util.obj tinytest.obj \
	regress_main.obj regress_minheap.obj regress_iocp.obj \
	regress_thread.obj

OTHER_OBJS=test-init.obj test-eof.obj test-weof.obj test-time.obj \
	bench.obj bench_cascade.obj bench_http.obj bench_httpclient.obj \
	test-changelist.obj

PROGRAMS=regress.exe \
	test-init.exe test-eof.exe test-weof.exe test-time.exe \
	test-changelist.exe

# Disabled for now:
#	bench.exe bench_cascade.exe bench_http.exe bench_httpclient.exe


LIBS=..\libevent.lib ws2_32.lib shell32.lib advapi32.lib

all: $(PROGRAMS)

regress.exe: $(REGRESS_OBJS)
	$(CC) $(CFLAGS) $(LIBS) $(REGRESS_OBJS)

test-init.exe: test-init.obj
	$(CC) $(CFLAGS) $(LIBS) test-init.obj
test-eof.exe: test-eof.obj
	$(CC) $(CFLAGS) $(LIBS) test-eof.obj
test-changelist.exe: test-changelist.obj
	$(CC) $(CFLAGS) $(LIBS) test-changelist.obj
test-weof.exe: test-weof.obj
	$(CC) $(CFLAGS) $(LIBS) test-weof.obj
test-time.exe: test-time.obj
	$(CC) $(CFLAGS) $(LIBS) test-time.obj

bench.exe: bench.obj
	$(CC) $(CFLAGS) $(LIBS) bench.obj
bench_cascade.exe: bench_cascade.obj
	$(CC) $(CFLAGS) $(LIBS) bench_cascade.obj
bench_http.exe: bench_http.obj
	$(CC) $(CFLAGS) $(LIBS) bench_http.obj
bench_httpclient.exe: bench_httpclient.obj
	$(CC) $(CFLAGS) $(LIBS) bench_httpclient.obj

regress.gen.c regress.gen.h: regress.rpc ../event_rpcgen.py
	echo // > regress.gen.c
	echo #define NO_PYTHON_EXISTS > regress.gen.h
	-python ..\event_rpcgen.py regress.rpc

clean:
	-del $(REGRESS_OBJS)
	-del $(OTHER_OBJS)
	-del regress.exe