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

Unified Diff: Makefile

Issue 3397004: Remove -lcrash (Closed) Base URL: http://git.chromium.org/git/crash-dumper.git
Patch Set: Created 10 years, 3 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 | « LICENSE ('k') | crash_dumper.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Makefile
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 5220321545891460af804d56560a93bd3bc15d75..0000000000000000000000000000000000000000
--- a/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright (c) 2010 The Chromium OS Authors. All rights reserved.
-# Use of this source code is governed by a BSD-style license that can be
-# found in the LICENSE file.
-
-CRASH_LIB = libcrash.so
-
-INCLUDE_DIRS = -I.. -I$(SYSROOT)/usr/include/google-breakpad
-
-# We need -fPIC for linking objects into shared objects.
-CXXFLAGS += -fPIC -Wall -Werror
-
-all: $(CRASH_LIB)
-
-tests: innocuous_host_lcrash_test
-
-$(CRASH_LIB): crash_dumper.o
- $(CXX) -shared -lbreakpad_client $^ -o $@
-
-innocuous_host_lcrash_test: innocuous_host_lcrash_test.o $(CRASH_LIB)
- $(CXX) $^ -o $@ ${CRASH_LIB}
-
-.cc.o:
- $(CXX) $(CXXFLAGS) $(INCLUDE_DIRS) -c $< -o $@
-
-clean:
- rm -rf *.o $(CRASH_LIB)
« no previous file with comments | « LICENSE ('k') | crash_dumper.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698