Skip to content

Commit c40212b

Browse files
committed
Clarify .def file comments.
1 parent 00c07e4 commit c40212b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Makefile.shlib

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -422,19 +422,19 @@ distprep: lib$(NAME)dll.def lib$(NAME)ddll.def blib$(NAME)dll.def
422422
UC_NAME = $(shell echo $(NAME) | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ')
423423

424424
lib$(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

430430
lib$(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

436436
blib$(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/' $< >>$@

0 commit comments

Comments
 (0)