Skip to content

Commit

Permalink
Add /OUT option for dumpbin
Browse files Browse the repository at this point in the history
  • Loading branch information
noloader committed Jan 7, 2019
1 parent 1709d5d commit e38bfe4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cryptest.nmake
Original file line number Diff line number Diff line change
Expand Up @@ -227,10 +227,11 @@ cryptlib.lib: $(LIB_OBJS)
# $(LD) dump2def.obj kernel32.lib /out:$@

cryptopp.map:
$(LD) $(LDFLAGS) /DLL /MAP /MAPINFO:EXPORTS $(LIB_OBJS) $(LDLIBS) /out:cryptopp.dll
$(LD) $(LDFLAGS) /DLL /MAP /MAPINFO:EXPORTS $(LIB_OBJS)
mv cryptlib.map cryptopp.map

cryptopp.dump: cryptlib.lib
dumpbin /LINKERMEMBER cryptlib.lib > cryptopp.dump
dumpbin.exe /LINKERMEMBER cryptlib.lib /OUT:$@

cryptopp.def: cryptlib.lib cryptopp.dump
dump2def.exe cryptopp.dump cryptopp.def
Expand Down

0 comments on commit e38bfe4

Please sign in to comment.