Thu, 22 Jan 2015 13:21:57 +0100
Incorporate requested changes from Mozilla in review:
https://bugzilla.mozilla.org/show_bug.cgi?id=1123480#c6
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 |