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

Side by Side Diff: source/libvpx/third_party/libmkv/Makefile

Issue 341293003: libvpx: Pull from upstream (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/deps/third_party/libvpx/
Patch Set: Created 6 years, 6 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
OLDNEW
(Empty)
1 #Variables
2 CC=gcc
3 LINKER=gcc
4 FLAGS=-g -Wall
5
6 all: testlibmkv
7
8 #Build Targets
9 EbmlWriter.o: EbmlWriter.c EbmlWriter.h
10 $(CC) $(FLAGS) -c EbmlWriter.c
11
12 EbmlBufferWriter.o: EbmlBufferWriter.c EbmlBufferWriter.h
13 $(CC) $(FLAGS) -c EbmlBufferWriter.c
14
15 WebMElement.o: WebMElement.c WebMElement.h
16 $(CC) $(FLAGS) -c WebMElement.c
17
18 testlibmkv.o: testlibmkv.c
19 $(CC) $(FLAGS) -c testlibmkv.c
20
21 testlibmkv: testlibmkv.o WebMElement.o EbmlBufferWriter.o EbmlWriter.o
22 $(LINKER) $(FLAGS) -o testlibmkv testlibmkv.o WebMElement.o EbmlBufferWr iter.o EbmlWriter.o
23
24 clean:
25 rm -rf *.o testlibmkv
OLDNEW
« no previous file with comments | « source/libvpx/third_party/libmkv/EbmlWriter.c ('k') | source/libvpx/third_party/libmkv/WebMElement.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698