File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -422,19 +422,19 @@ distprep: lib$(NAME)dll.def lib$(NAME)ddll.def blib$(NAME)dll.def
422422UC_NAME = $(shell echo $(NAME) | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')
423423
424424lib$(NAME)dll.def: $(SHLIB_EXPORTS)
425- echo '; DEF file for MS VC++ ' >$@
425+ echo '; DEF file for win32.mak release build and for Makefile.shlib (MinGW) ' >$@
426426 echo 'LIBRARY LIB$(UC_NAME).dll' >>$@
427427 echo 'EXPORTS' >>$@
428428 sed -e '/^#/d' -e 's/^\(.*[ ]\)\([0-9][0-9]*\)/ \1@ \2/' $< >>$@
429429
430430lib$(NAME)ddll.def: $(SHLIB_EXPORTS)
431- echo '; DEF file for MS VC++ ' >$@
431+ echo '; DEF file for win32.mak debug build ' >$@
432432 echo 'LIBRARY LIB$(UC_NAME)D.dll' >>$@
433433 echo 'EXPORTS' >>$@
434434 sed -e '/^#/d' -e 's/^\(.*[ ]\)\([0-9][0-9]*\)/ \1@ \2/' $< >>$@
435435
436436blib$(NAME)dll.def: $(SHLIB_EXPORTS)
437- echo '; DEF file for Borland C++ Builder' >$@
437+ echo '; DEF file for bcc32.mak ( Borland C++ Builder) ' >$@
438438 echo 'LIBRARY BLIB$(UC_NAME)' >>$@
439439 echo 'EXPORTS' >>$@
440440 sed -e '/^#/d' -e 's/^\(.*[ ]\)\([0-9][0-9]*\)/ _\1@ \2/' $< >>$@
You can’t perform that action at this time.
0 commit comments