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

Side by Side 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 unified diff | Download patch
« no previous file with comments | « third_party/minicrt/_hello.cc ('k') | third_party/minicrt/alloc.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 #==================================================
2 # LIBCTINY - Matt Pietrek 1996
3 # Microsoft Systems Journal, October 1996
4 # FILE: LIBCTINY.MAK - Makefile for Microsoft version
5 #==================================================
6 CC = CL
7 CC_OPTIONS = /c /W3 /DWIN32_LEAN_AND_MEAN /Gy /GR- /GX- /GF
8
9 S=.
10 !ifdef DEBUG
11 CC_OPTIONS = $(CC_OPTIONS) /Zi
12 O=Debug
13 !else
14 CC_OPTIONS = $(CC_OPTIONS) /Zi /Ogisyb2
15 O=Release
16 !endif
17
18 PROJ = LIBCTINY
19
20 OBJS = $O\CRT0TCON.OBJ $O\CRT0TWIN.OBJ $O\DLLCRT0.OBJ $O\ARGCARGV.OBJ $O\PRINTF .OBJ \
21 $O\SPRINTF.OBJ $O\PUTS.OBJ $O\ALLOC.OBJ $O\ALLOC2.OBJ $O\ALLOCSUP.OBJ $O \STRUPLWR.OBJ \
22 $O\ISCTYPE.OBJ $O\ATOL.OBJ $O\STRICMP.OBJ $O\NEWDEL.OBJ $O\INITTERM.OBJ
23
24 all: $O $O\$(PROJ).LIB
25
26 $O: ; mkdir $O
27
28 $O\$(PROJ).LIB: {$O}$(OBJS)
29 LIB /OUT:$O\$(PROJ).LIB $(OBJS)
30
31 {$S}.CPP{$O}.OBJ::
32 $(CC) $(CC_OPTIONS) -Fo$O\ -Fd$O\ $<
33
34 {$O}$(OBJS):
OLDNEW
« 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