| OLD | NEW |
| 1 | 1 |
| 2 CFLAGS=/I.. /I../include /I../WIN32-Code /I../compat /DWIN32 /DHAVE_CONFIG_H | 2 CFLAGS=/I.. /I../include /I../WIN32-Code /I../compat /DWIN32 /DHAVE_CONFIG_H |
| 3 | 3 |
| 4 CFLAGS=$(CFLAGS) /Ox /W3 /wd4996 /nologo | 4 CFLAGS=$(CFLAGS) /Ox /W3 /wd4996 /nologo |
| 5 | 5 |
| 6 REGRESS_OBJS=regress.obj regress_http.obj regress_dns.obj \ | 6 REGRESS_OBJS=regress.obj regress_http.obj regress_dns.obj \ |
| 7 regress_rpc.obj regress.gen.obj \ | 7 regress_rpc.obj regress.gen.obj \ |
| 8 | 8 |
| 9 OTHER_OBJS=test-init.obj test-eof.obj test-weof.obj test-time.obj \ | 9 OTHER_OBJS=test-init.obj test-eof.obj test-weof.obj test-time.obj \ |
| 10 bench.obj bench_cascade.obj bench_http.obj bench_httpclient.obj | 10 bench.obj bench_cascade.obj bench_http.obj bench_httpclient.obj |
| (...skipping 27 matching lines...) Expand all Loading... |
| 38 $(CC) $(CFLAGS) $(LIBS) bench_cascade.obj | 38 $(CC) $(CFLAGS) $(LIBS) bench_cascade.obj |
| 39 bench_http.exe: bench_http.obj | 39 bench_http.exe: bench_http.obj |
| 40 $(CC) $(CFLAGS) $(LIBS) bench_http.obj | 40 $(CC) $(CFLAGS) $(LIBS) bench_http.obj |
| 41 bench_httpclient.exe: bench_httpclient.obj | 41 bench_httpclient.exe: bench_httpclient.obj |
| 42 $(CC) $(CFLAGS) $(LIBS) bench_httpclient.obj | 42 $(CC) $(CFLAGS) $(LIBS) bench_httpclient.obj |
| 43 | 43 |
| 44 clean: | 44 clean: |
| 45 -del $(REGRESS_OBJS) | 45 -del $(REGRESS_OBJS) |
| 46 -del $(OTHER_OBJS) | 46 -del $(OTHER_OBJS) |
| 47 -del regress.exe | 47 -del regress.exe |
| OLD | NEW |