mirror of
https://github.com/mirror/make.git
synced 2025-01-16 15:20:39 +08:00
Fix .LIBPATTERNS for MS-Windows builds.
default.c (.LIBPATTERNS) [__CYGWIN__ || WINDOWS32]: Provide library patterns for MS-Windows. Copyright-paperwork-exempt: yes
This commit is contained in:
parent
a4937bc897
commit
432cb6575d
@ -523,6 +523,8 @@ static const char *default_variables[] =
|
|||||||
".LIBPATTERNS", "lib%.a $(DJDIR)/lib/lib%.a",
|
".LIBPATTERNS", "lib%.a $(DJDIR)/lib/lib%.a",
|
||||||
#elif defined(__APPLE__)
|
#elif defined(__APPLE__)
|
||||||
".LIBPATTERNS", "lib%.dylib lib%.a",
|
".LIBPATTERNS", "lib%.dylib lib%.a",
|
||||||
|
#elif defined(__CYGWIN__) || defined(WINDOWS32)
|
||||||
|
".LIBPATTERNS", "lib%.dll.a %.dll.a lib%.a %.lib lib%.dll %.dll",
|
||||||
#else
|
#else
|
||||||
".LIBPATTERNS", "lib%.so lib%.a",
|
".LIBPATTERNS", "lib%.so lib%.a",
|
||||||
#endif
|
#endif
|
||||||
|
Loading…
Reference in New Issue
Block a user