Commit 0dcc9ee08aeb72ef229d66a46d882297fc918109
1 parent
b45d01eb
Exists in
master
and in
1 other branch
Adding macos targets.
Showing
1 changed file
with
21 additions
and
0 deletions
Show diff stats
Makefile.in
... | ... | @@ -363,6 +363,18 @@ install-linux-lib: \ |
363 | 363 | $(BINRLS)/$(SONAME) \ |
364 | 364 | $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ |
365 | 365 | |
366 | +install-macos-lib: \ | |
367 | + $(BINRLS)/$(SONAME) \ | |
368 | + install-conf \ | |
369 | + install-locale | |
370 | + | |
371 | + # Install library | |
372 | + @$(MKDIR) $(DESTDIR)$(libdir) | |
373 | + | |
374 | + @$(INSTALL_PROGRAM) \ | |
375 | + $(BINRLS)/$(SONAME) \ | |
376 | + $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ | |
377 | + | |
366 | 378 | install-windows-lib: \ |
367 | 379 | $(BINRLS)/$(SONAME) \ |
368 | 380 | install-conf \ |
... | ... | @@ -439,6 +451,15 @@ install-linux-dev: |
439 | 451 | $(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ \ |
440 | 452 | $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@ |
441 | 453 | |
454 | +install-macos-dev: | |
455 | + | |
456 | + @$(MKDIR) \ | |
457 | + $(DESTDIR)$(libdir) | |
458 | + | |
459 | + @$(LN_S) \ | |
460 | + $(LIBNAME)@DLLEXT@.@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ \ | |
461 | + $(DESTDIR)$(libdir)/$(LIBNAME)@DLLEXT@ | |
462 | + | |
442 | 463 | install-windows-dev: \ |
443 | 464 | strip \ |
444 | 465 | $(BINRLS)/$(LIBNAME).dll.a | ... | ... |