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

Unified Diff: third_party/minicrt/_libctiny.mak

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/minicrt/_hello.cc ('k') | third_party/minicrt/alloc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/minicrt/_libctiny.mak
diff --git a/third_party/minicrt/_libctiny.mak b/third_party/minicrt/_libctiny.mak
deleted file mode 100644
index b1ef9353dace36f6a8fcd4c1b6518bb3c28da23b..0000000000000000000000000000000000000000
--- a/third_party/minicrt/_libctiny.mak
+++ /dev/null
@@ -1,34 +0,0 @@
-#==================================================
-# LIBCTINY - Matt Pietrek 1996
-# Microsoft Systems Journal, October 1996
-# FILE: LIBCTINY.MAK - Makefile for Microsoft version
-#==================================================
-CC = CL
-CC_OPTIONS = /c /W3 /DWIN32_LEAN_AND_MEAN /Gy /GR- /GX- /GF
-
-S=.
-!ifdef DEBUG
-CC_OPTIONS = $(CC_OPTIONS) /Zi
-O=Debug
-!else
-CC_OPTIONS = $(CC_OPTIONS) /Zi /Ogisyb2
-O=Release
-!endif
-
-PROJ = LIBCTINY
-
-OBJS = $O\CRT0TCON.OBJ $O\CRT0TWIN.OBJ $O\DLLCRT0.OBJ $O\ARGCARGV.OBJ $O\PRINTF.OBJ \
- $O\SPRINTF.OBJ $O\PUTS.OBJ $O\ALLOC.OBJ $O\ALLOC2.OBJ $O\ALLOCSUP.OBJ $O\STRUPLWR.OBJ \
- $O\ISCTYPE.OBJ $O\ATOL.OBJ $O\STRICMP.OBJ $O\NEWDEL.OBJ $O\INITTERM.OBJ
-
-all: $O $O\$(PROJ).LIB
-
-$O: ; mkdir $O
-
-$O\$(PROJ).LIB: {$O}$(OBJS)
- LIB /OUT:$O\$(PROJ).LIB $(OBJS)
-
-{$S}.CPP{$O}.OBJ::
- $(CC) $(CC_OPTIONS) -Fo$O\ -Fd$O\ $<
-
-{$O}$(OBJS):
« no previous file with comments | « third_party/minicrt/_hello.cc ('k') | third_party/minicrt/alloc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698