python/which/Makefile.win

Tue, 06 Jan 2015 21:39:09 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Tue, 06 Jan 2015 21:39:09 +0100
branch
TOR_BUG_9701
changeset 8
97036ab72558
permissions
-rw-r--r--

Conditionally force memory storage according to privacy.thirdparty.isolate;
This solves Tor bug #9701, complying with disk avoidance documented in
https://www.torproject.org/projects/torbrowser/design/#disk-avoidance.

michael@0 1 # Copyright (c) 2002-2003 ActiveState Corp.
michael@0 2 # Author: Trent Mick (TrentM@ActiveState.com)
michael@0 3 #
michael@0 4 # A Makefile to do this: launcher.cpp -> foo.exe
michael@0 5
michael@0 6 APPNAME=which
michael@0 7
michael@0 8 # for release:
michael@0 9 CFLAGS=-D_CONSOLE -D_MBCS -DWIN32 -W3 -Ox -DNDEBUG -D_NDEBUG -MD
michael@0 10 LDFLAGS=/subsystem:console kernel32.lib user32.lib gdi32.lib advapi32.lib shlwapi.lib
michael@0 11 # for debug:
michael@0 12 # CFLAGS = -D_CONSOLE -D_MBCS /DWIN32 /Zi /Od /DDEBUG /D_DEBUG /MDd
michael@0 13 # LDFLAGS += /DEBUG
michael@0 14
michael@0 15 $(APPNAME).exe: launcher.cpp
michael@0 16 cl -nologo $(CFLAGS) -c launcher.cpp
michael@0 17 link -nologo $(LDFLAGS) launcher.obj -out:$(APPNAME).exe
michael@0 18
michael@0 19 clean:
michael@0 20 if exist launcher.obj; del launcher.obj
michael@0 21 if exist $(APPNAME).exe; del $(APPNAME).exe

mercurial