Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(571)

Unified Diff: third_party/libevent/Makefile.nmake

Issue 1531573008: move libevent into base (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix shim path Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « third_party/libevent/Makefile.am ('k') | third_party/libevent/README » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/libevent/Makefile.nmake
diff --git a/third_party/libevent/Makefile.nmake b/third_party/libevent/Makefile.nmake
deleted file mode 100644
index f8d572204e24730ca269015b943dcde57d393ab2..0000000000000000000000000000000000000000
--- a/third_party/libevent/Makefile.nmake
+++ /dev/null
@@ -1,48 +0,0 @@
-# WATCH OUT! This makefile is a work in progress. It is probably missing
-# tons of important things. DO NOT RELY ON IT TO BUILD A GOOD LIBEVENT.
-
-# Needed for correctness
-CFLAGS=/Iinclude /Icompat /IWIN32-Code /DWIN32 /DHAVE_CONFIG_H /I.
-
-# For optimization and warnings
-CFLAGS=$(CFLAGS) /Ox /W3 /wd4996 /nologo
-
-# XXXX have a debug mode
-
-LIBFLAGS=/nologo
-
-
-CORE_OBJS=event.obj buffer.obj evbuffer.obj \
- log.obj evutil.obj \
- strlcpy.obj signal.obj win32.obj
-EXTRA_OBJS=event_tagging.obj http.obj evdns.obj evrpc.obj
-
-ALL_OBJS=$(CORE_OBJS) $(WIN_OBJS) $(EXTRA_OBJS)
-STATIC_LIBS=libevent_core.lib libevent_extras.lib libevent.lib
-
-
-all: static_libs tests
-
-static_libs: $(STATIC_LIBS)
-
-win32.obj: WIN32-Code\win32.c
- $(CC) $(CFLAGS) /c WIN32-Code\win32.c
-
-libevent_core.lib: $(CORE_OBJS)
- lib $(LIBFLAGS) $(CORE_OBJS) /out:libevent_core.lib
-
-libevent_extras.lib: $(EXTRA_OBJS)
- lib $(LIBFLAGS) $(EXTRA_OBJS) /out:libevent_extras.lib
-
-libevent.lib: $(CORE_OBJ) $(EXTRA_OBJS)
- lib $(LIBFLAGS) $(CORE_OBJS) $(EXTRA_OBJS) /out:libevent.lib
-
-clean:
- del $(ALL_OBJS)
- del $(STATIC_LIBS)
- cd test
- $(MAKE) /F Makefile.nmake clean
-
-tests:
- cd test
- $(MAKE) /F Makefile.nmake
« no previous file with comments | « third_party/libevent/Makefile.am ('k') | third_party/libevent/README » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698