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

Unified Diff: third_party/lzma/v4_65/files/C/LzmaUtil/makefile.gcc

Issue 624713003: Keep only base/extractor.[cc|h]. (Closed) Base URL: https://chromium.googlesource.com/external/omaha.git@master
Patch Set: Created 6 years, 2 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 | « third_party/lzma/v4_65/files/C/LzmaUtil/makefile ('k') | third_party/lzma/v4_65/files/C/Threads.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/lzma/v4_65/files/C/LzmaUtil/makefile.gcc
diff --git a/third_party/lzma/v4_65/files/C/LzmaUtil/makefile.gcc b/third_party/lzma/v4_65/files/C/LzmaUtil/makefile.gcc
deleted file mode 100644
index 9fcdeadbaf2d4df88518b329553ff360198b45a8..0000000000000000000000000000000000000000
--- a/third_party/lzma/v4_65/files/C/LzmaUtil/makefile.gcc
+++ /dev/null
@@ -1,44 +0,0 @@
-PROG = lzma
-CXX = g++
-LIB =
-RM = rm -f
-CFLAGS = -c -O2 -Wall
-
-OBJS = \
- LzmaUtil.o \
- Alloc.o \
- LzFind.o \
- LzmaDec.o \
- LzmaEnc.o \
- 7zFile.o \
- 7zStream.o \
-
-
-all: $(PROG)
-
-$(PROG): $(OBJS)
- $(CXX) -o $(PROG) $(LDFLAGS) $(OBJS) $(LIB) $(LIB2)
-
-LzmaUtil.o: LzmaUtil.c
- $(CXX) $(CFLAGS) LzmaUtil.c
-
-Alloc.o: ../Alloc.c
- $(CXX) $(CFLAGS) ../Alloc.c
-
-LzFind.o: ../LzFind.c
- $(CXX) $(CFLAGS) ../LzFind.c
-
-LzmaDec.o: ../LzmaDec.c
- $(CXX) $(CFLAGS) ../LzmaDec.c
-
-LzmaEnc.o: ../LzmaEnc.c
- $(CXX) $(CFLAGS) ../LzmaEnc.c
-
-7zFile.o: ../7zFile.c
- $(CXX) $(CFLAGS) ../7zFile.c
-
-7zStream.o: ../7zStream.c
- $(CXX) $(CFLAGS) ../7zStream.c
-
-clean:
- -$(RM) $(PROG) $(OBJS)
« no previous file with comments | « third_party/lzma/v4_65/files/C/LzmaUtil/makefile ('k') | third_party/lzma/v4_65/files/C/Threads.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698