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

Unified Diff: net/third_party/udt/app/Makefile

Issue 6708091: Remove UDT. (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 9 years, 9 months 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 | « net/third_party/udt/RELEASE_NOTES.txt ('k') | net/third_party/udt/app/appclient.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: net/third_party/udt/app/Makefile
===================================================================
--- net/third_party/udt/app/Makefile (revision 78992)
+++ net/third_party/udt/app/Makefile (working copy)
@@ -1,55 +0,0 @@
-C++ = g++
-
-ifndef os
- os = LINUX
-endif
-
-ifndef arch
- arch = IA32
-endif
-
-CCFLAGS = -Wall -D$(os) -I../src -finline-functions -O3
-
-ifeq ($(arch), IA32)
- CCFLAGS += -DIA32 #-mcpu=pentiumpro -march=pentiumpro -mmmx -msse
-endif
-
-ifeq ($(arch), POWERPC)
- CCFLAGS += -mcpu=powerpc
-endif
-
-ifeq ($(arch), IA64)
- CCFLAGS += -DIA64
-endif
-
-LDFLAGS = -L../src -ludt -lstdc++ -lpthread -lm
-
-ifeq ($(os), UNIX)
- LDFLAGS += -lsocket
-endif
-
-DIR = $(shell pwd)
-
-APP = appserver appclient sendfile recvfile test
-
-all: $(APP)
-
-%.o: %.cpp
- $(C++) $(CCFLAGS) $< -c
-
-appserver: appserver.o
- $(C++) $^ -o $@ $(LDFLAGS)
-appclient: appclient.o
- $(C++) $^ -o $@ $(LDFLAGS)
-sendfile: sendfile.o
- $(C++) $^ -o $@ $(LDFLAGS)
-recvfile: recvfile.o
- $(C++) $^ -o $@ $(LDFLAGS)
-test: test.o
- $(C++) $^ -o $@ $(LDFLAGS)
-
-clean:
- rm -f *.o $(APP)
-
-install:
- export PATH=$(DIR):$$PATH
« no previous file with comments | « net/third_party/udt/RELEASE_NOTES.txt ('k') | net/third_party/udt/app/appclient.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698