diff options
author | marha <marha@users.sourceforge.net> | 2013-11-12 11:24:15 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2013-11-12 11:24:15 +0100 |
commit | 698a69fedac48209ff538d76e9aed935814a1652 (patch) | |
tree | c81689e6af7eb8acc29d5df8f8666ae780195d31 /makefile.after | |
parent | 044155399477435a14c90420ab7c19d59cc3bddc (diff) | |
download | vcxsrv-698a69fedac48209ff538d76e9aed935814a1652.tar.gz vcxsrv-698a69fedac48209ff538d76e9aed935814a1652.tar.bz2 vcxsrv-698a69fedac48209ff538d76e9aed935814a1652.zip |
Generate map file
Diffstat (limited to 'makefile.after')
-rw-r--r-- | makefile.after | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/makefile.after b/makefile.after index d6a1170a1..41bac41fa 100644 --- a/makefile.after +++ b/makefile.after @@ -64,7 +64,7 @@ all: $(EXE) $(EXE) : $(OBJS) $(INCLUDELIBFILES) $(INCLUDENOSERVLIBFILES) $(RESOBJS) $(MANIFESTFILE) $(EXTRALIB)
ifndef VS2008
- $(LINK) $(LINKFLAGS) /OUT:$(relpath $@) $(INCLUDELIBFILES) $(INCLUDENOSERVLIBFILES) $(SYSTEMLIBS) $(LINKLIBS) $(EXTRALIB) $(OBJS) $(RESOBJS)
+ $(LINK) $(LINKFLAGS) /MAP:$(EXE:%.exe=%.map) /OUT:$(relpath $@) $(INCLUDELIBFILES) $(INCLUDENOSERVLIBFILES) $(SYSTEMLIBS) $(LINKLIBS) $(EXTRALIB) $(OBJS) $(RESOBJS)
else
$(LINK) $(LINKFLAGS) /MANIFEST:NO /OUT:$(relpath $@) $(INCLUDELIBFILES) $(INCLUDENOSERVLIBFILES) $(SYSTEMLIBS) $(LINKLIBS) $(EXTRALIB) $(OBJS) $(RESOBJS)
mt -nologo -manifest $(MANIFESTFILE) -outputresource:$(relpath $@);\#1
|