mirror of
https://git.savannah.gnu.org/git/make.git
synced 2024-11-25 04:35:44 +00: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
1 changed files with 2 additions and 0 deletions
|
@ -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 a new issue