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

Unified Diff: utils/archive/Makefile

Issue 12016011: Remove utils/archive. It is not used at this point. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 11 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 | « no previous file | utils/archive/archive.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: utils/archive/Makefile
diff --git a/utils/archive/Makefile b/utils/archive/Makefile
deleted file mode 100644
index 6e1892cc7ffc304be9b5b0f6a026dc08f1a47a94..0000000000000000000000000000000000000000
--- a/utils/archive/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
-# for details. All rights reserved. Use of this source code is governed by a
-# BSD-style license that can be found in the LICENSE file.
-
-# TODO(nweiz): replace this with a .gypi file
-
-CC = gcc
-CFLAGS = -fPIC -m32 -I ../../runtime/include/ -g
-LDFLAGS = -shared -m32 -g -larchive -Wl,-soname,libdart_archive.so
-
-all: libdart_archive.so
-
-libdart_archive.so: dart_archive.o entry.o messaging.o reader.o
- $(CC) $(LDFLAGS) -o $@ dart_archive.o entry.o messaging.o reader.o
-
-dart_archive.o: dart_archive.c dart_archive.h
- $(CC) $(CFLAGS) -c $<
-
-entry.o: entry.c entry.h messaging.h dart_archive.h
- $(CC) $(CFLAGS) -c $<
-
-messaging.o: messaging.c messaging.h dart_archive.h
- $(CC) $(CFLAGS) -c $<
-
-reader.o: reader.c reader.h entry.h messaging.h dart_archive.h
- $(CC) $(CFLAGS) -c $<
« no previous file with comments | « no previous file | utils/archive/archive.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698