mirror of
https://github.com/vishapoberon/compiler.git
synced 2026-04-06 04:02:25 +00:00
Fix for dynamic library installation.
This commit is contained in:
parent
ee6e5fe7b4
commit
6a20f8f951
1 changed files with 2 additions and 2 deletions
|
|
@ -189,7 +189,7 @@ installable:
|
||||||
uninstall: installable
|
uninstall: installable
|
||||||
@printf '\nUninstalling from \"$(INSTALLDIR)\"\n'
|
@printf '\nUninstalling from \"$(INSTALLDIR)\"\n'
|
||||||
rm -rf "$(INSTALLDIR)"
|
rm -rf "$(INSTALLDIR)"
|
||||||
@sh src/tools/make/addlibrary.sh uninstall \""$(INSTALLDIR)/lib"\" $(oname)
|
@sh src/tools/make/addlibrary.sh uninstall "$(INSTALLDIR)/lib" $(oname)
|
||||||
|
|
||||||
|
|
||||||
# install: Use only after a successful full build. Installs the compiler
|
# install: Use only after a successful full build. Installs the compiler
|
||||||
|
|
@ -199,7 +199,7 @@ install: uninstall
|
||||||
@printf '\nInstalling into \"$(INSTALLDIR)\"\n'
|
@printf '\nInstalling into \"$(INSTALLDIR)\"\n'
|
||||||
@rm -rf "$(INSTALLDIR)"
|
@rm -rf "$(INSTALLDIR)"
|
||||||
@cp -rf "$(ROOTDIR)/install/" "$(INSTALLDIR)"
|
@cp -rf "$(ROOTDIR)/install/" "$(INSTALLDIR)"
|
||||||
@sh src/tools/make/addlibrary.sh install \""$(INSTALLDIR)/lib"\" $(ONAME)
|
@sh src/tools/make/addlibrary.sh install "$(INSTALLDIR)/lib" $(ONAME)
|
||||||
@printf '\nOberon compiler installed to $(INSTALLDIR)\n'
|
@printf '\nOberon compiler installed to $(INSTALLDIR)\n'
|
||||||
@printf '\nNow add $(INSTALLDIR)/bin to your path, for example with the command:\n'
|
@printf '\nNow add $(INSTALLDIR)/bin to your path, for example with the command:\n'
|
||||||
@printf 'export PATH=\"$(INSTALLDIR)/bin:$$PATH\"\n'
|
@printf 'export PATH=\"$(INSTALLDIR)/bin:$$PATH\"\n'
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue