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

Side by Side Diff: base/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 gn bootstrap 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 unified diff | Download patch
OLDNEW
1 # WATCH OUT! This makefile is a work in progress. It is probably missing 1 # WATCH OUT! This makefile is a work in progress. It is probably missing
2 # tons of important things. DO NOT RELY ON IT TO BUILD A GOOD LIBEVENT. 2 # tons of important things. DO NOT RELY ON IT TO BUILD A GOOD LIBEVENT.
3 3
4 # Needed for correctness 4 # Needed for correctness
5 CFLAGS=/Iinclude /Icompat /IWIN32-Code /DWIN32 /DHAVE_CONFIG_H /I. 5 CFLAGS=/Iinclude /Icompat /IWIN32-Code /DWIN32 /DHAVE_CONFIG_H /I.
6 6
7 # For optimization and warnings 7 # For optimization and warnings
8 CFLAGS=$(CFLAGS) /Ox /W3 /wd4996 /nologo 8 CFLAGS=$(CFLAGS) /Ox /W3 /wd4996 /nologo
9 9
10 # XXXX have a debug mode 10 # XXXX have a debug mode
(...skipping 28 matching lines...) Expand all
39 39
40 clean: 40 clean:
41 del $(ALL_OBJS) 41 del $(ALL_OBJS)
42 del $(STATIC_LIBS) 42 del $(STATIC_LIBS)
43 cd test 43 cd test
44 $(MAKE) /F Makefile.nmake clean 44 $(MAKE) /F Makefile.nmake clean
45 45
46 tests: 46 tests:
47 cd test 47 cd test
48 $(MAKE) /F Makefile.nmake 48 $(MAKE) /F Makefile.nmake
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698