Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
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 |