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

Side by Side 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: Fix the ISO9660 constant Created 8 years, 4 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | utils/archive/archive.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 # Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
2 # for details. All rights reserved. Use of this source code is governed by a 2 # for details. All rights reserved. Use of this source code is governed by a
3 # BSD-style license that can be found in the LICENSE file. 3 # BSD-style license that can be found in the LICENSE file.
4 4
5 # TODO(nweiz): replace this with a .gypi file 5 # TODO(nweiz): replace this with a .gypi file
6 6
7 CC = gcc 7 CC = gcc
8 CFLAGS = -fPIC -m32 -I ../../runtime/include/ -g 8 CFLAGS = -fPIC -m32 -I ../../runtime/include/ -g
9 LDFLAGS = -shared -m32 -g -larchive -Wl,-soname,libdart_archive.so 9 LDFLAGS = -shared -m32 -g -larchive -Wl,-soname,libdart_archive.so
10 10
11 all: libdart_archive.so 11 all: libdart_archive.so
12 12
13 libdart_archive.so: dart_archive.o messaging.o reader.o 13 libdart_archive.so: dart_archive.o entry.o messaging.o reader.o
14 » $(CC) $(LDFLAGS) -o $@ dart_archive.o messaging.o reader.o 14 » $(CC) $(LDFLAGS) -o $@ dart_archive.o entry.o messaging.o reader.o
15 15
16 dart_archive.o: dart_archive.c dart_archive.h 16 dart_archive.o: dart_archive.c dart_archive.h
17 $(CC) $(CFLAGS) -c $< 17 $(CC) $(CFLAGS) -c $<
18 18
19 entry.o: entry.c entry.h messaging.h dart_archive.h
20 $(CC) $(CFLAGS) -c $<
21
19 messaging.o: messaging.c messaging.h dart_archive.h 22 messaging.o: messaging.c messaging.h dart_archive.h
20 $(CC) $(CFLAGS) -c $< 23 $(CC) $(CFLAGS) -c $<
21 24
22 reader.o: reader.c messaging.h dart_archive.h 25 reader.o: reader.c reader.h entry.h messaging.h dart_archive.h
23 $(CC) $(CFLAGS) -c $< 26 $(CC) $(CFLAGS) -c $<
OLDNEW
« 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