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

Unified Diff: utils/archive/Makefile

Issue 10832116: Attach the native entry struct to the ArchiveEntry object. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years, 5 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') | utils/archive/entry.c » ('J')
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
index d4b7732ddfea98f7077b6afc35417e2b78ff5b89..6e1892cc7ffc304be9b5b0f6a026dc08f1a47a94 100644
--- a/utils/archive/Makefile
+++ b/utils/archive/Makefile
@@ -10,14 +10,17 @@ LDFLAGS = -shared -m32 -g -larchive -Wl,-soname,libdart_archive.so
all: libdart_archive.so
-libdart_archive.so: dart_archive.o messaging.o reader.o
- $(CC) $(LDFLAGS) -o $@ dart_archive.o messaging.o reader.o
+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 messaging.h dart_archive.h
+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') | utils/archive/entry.c » ('J')

Powered by Google App Engine
This is Rietveld 408576698