Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit c40212b

Browse filesBrowse files
committed
Clarify .def file comments.
1 parent 00c07e4 commit c40212b
Copy full SHA for c40212b

File tree

Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed
Filter options
Expand file treeCollapse file tree

1 file changed

+3
-3
lines changed

‎src/Makefile.shlib

Copy file name to clipboardExpand all lines: src/Makefile.shlib
+3-3Lines 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 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.