diff options
author | Tim <tim.elberfeld@uantwerpen.be> | 2018-11-15 17:27:28 +0100 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2018-12-12 15:56:01 +0100 |
commit | c19b7e2a4a97ebc3a2c060d67a323e0e6fe66f91 (patch) | |
tree | 04b68902e0b3cd5a4efdce8f024a0397abeb89c9 /build/linux | |
parent | 798ed7c70ed509c9d2dce95e2c3df40e71f7fe62 (diff) | |
download | astra-c19b7e2a4a97ebc3a2c060d67a323e0e6fe66f91.tar.gz astra-c19b7e2a4a97ebc3a2c060d67a323e0e6fe66f91.tar.bz2 astra-c19b7e2a4a97ebc3a2c060d67a323e0e6fe66f91.tar.xz astra-c19b7e2a4a97ebc3a2c060d67a323e0e6fe66f91.zip |
copy plot_geom files in correct folders when installing
Diffstat (limited to 'build/linux')
-rw-r--r-- | build/linux/Makefile.in | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/build/linux/Makefile.in b/build/linux/Makefile.in index 2129519..14df491 100644 --- a/build/linux/Makefile.in +++ b/build/linux/Makefile.in @@ -517,8 +517,30 @@ install-matlab: $(MATLAB_MEX) install-matlab-so $(INSTALL_SH) -m 755 -d $(MATLABBASE) $(INSTALL_SH) -m 755 -d $(MATLABBASE)/mex $(INSTALL_SH) -m 755 -d $(MATLABBASE)/tools + $(INSTALL_SH) -m 755 -d $(MATLABBASE)/algorithms $(INSTALL_SH) -m 755 $(MATLAB_MEX) $(MATLABBASE)/mex $(INSTALL_SH) -m 644 $(srcdir)/../../matlab/tools/*.m $(MATLABBASE)/tools + + # TODO: there must be a more efficient way to do this than to create and fill every single folder + # install plot_geom + $(INSTALL_SH) -m 755 -d $(MATLABBASE)/algorithms/plot_geom + $(INSTALL_SH) -m 644 $(srcdir)/../../matlab/algorithms/plot_geom/*.m $(MATLABBASE)/algorithms/plot_geom + + $(INSTALL_SH) -m 755 -d $(MATLABBASE)/algorithms/plot_geom/draw + $(INSTALL_SH) -m 644 $(srcdir)/../../matlab/algorithms/plot_geom/draw/*.m $(MATLABBASE)/algorithms/plot_geom/draw + + $(INSTALL_SH) -m 755 -d $(MATLABBASE)/algorithms/plot_geom/stl + $(INSTALL_SH) -m 644 $(srcdir)/../../matlab/algorithms/plot_geom/stl/*.stl $(MATLABBASE)/algorithms/plot_geom/stl + + $(INSTALL_SH) -m 755 -d $(MATLABBASE)/algorithms/plot_geom/util + $(INSTALL_SH) -m 644 $(srcdir)/../../matlab/algorithms/plot_geom/util/*.m $(MATLABBASE)/algorithms/plot_geom/util + + $(INSTALL_SH) -m 755 -d $(MATLABBASE)/algorithms/plot_geom/util/parseargs + $(INSTALL_SH) -m 644 $(srcdir)/../../matlab/algorithms/plot_geom/util/parseargs/* $(MATLABBASE)/algorithms/plot_geom/util/parseargs + + $(INSTALL_SH) -m 755 -d $(MATLABBASE)/algorithms/plot_geom/util/stlTools + $(INSTALL_SH) -m 644 $(srcdir)/../../matlab/algorithms/plot_geom/util/stlTools/* $(MATLABBASE)/algorithms/plot_geom/util/stlTools + # TODO: docs else install-matlab: |