diff options
author | Camil Staps | 2019-06-03 22:34:50 +0200 |
---|---|---|
committer | Camil Staps | 2019-06-03 22:34:50 +0200 |
commit | b80ca57c82ad8f5973e4e49ba5b981dc11d5d4b9 (patch) | |
tree | c723417298e691c30fb51fe5060c912b2574ed58 /clean/bin | |
parent | record-webcam: use date as file name (diff) |
Move ~/VersionControl to ~/projects; add clean subdirectory for better overview
Diffstat (limited to 'clean/bin')
-rwxr-xr-x | clean/bin/install_clean | 27 |
1 files changed, 13 insertions, 14 deletions
diff --git a/clean/bin/install_clean b/clean/bin/install_clean index 29c2f59..a47699e 100755 --- a/clean/bin/install_clean +++ b/clean/bin/install_clean @@ -46,28 +46,27 @@ link_local_file(){ } # Local versions of binaries -link_local_file bin/clm ~/VersionControl/clean-tools-git/clm/clm -#link_local_file bin/cpm ~/VersionControl/clean-ide/cpm/cpm +#link_local_file bin/cpm ~/projects/clean/ide/cpm/cpm -link_local_file lib/exe/cocl /home/camil/VersionControl/clean-compiler/cocl +link_local_file lib/exe/cocl /home/camil/projects/clean/compiler/cocl -link_local_file bin/cleantest ~/VersionControl/clean-test/cleantest -link_local_file bin/testproperties ~/VersionControl/clean-test-properties/src/testproperties +link_local_file bin/cleantest ~/projects/clean/test/cleantest +link_local_file bin/testproperties ~/projects/clean/test-properties/src/testproperties -link_local_file data/cleandoc-default ~/VersionControl/clean-doc/data/cleandoc-default -link_local_file bin/cleandoc ~/VersionControl/clean-doc/src/cleandoc +link_local_file data/cleandoc-default ~/projects/clean/doc/data/cleandoc-default +link_local_file bin/cleandoc ~/projects/clean/doc/src/cleandoc -link_local_file bin/cleanprof2callgrind ~/VersionControl/cleanprof2callgrind/cleanprof2callgrind +link_local_file bin/cleanprof2callgrind ~/projects/clean/cleanprof2callgrind/cleanprof2callgrind # ABC interpreter binaries -link_local_file lib/exe/abcopt ~/VersionControl/abc-interpreter/src/abcopt -link_local_file lib/exe/bcgen ~/VersionControl/abc-interpreter/src/bcgen -link_local_file lib/exe/bclink ~/VersionControl/abc-interpreter/src/bclink -link_local_file lib/exe/bcprelink ~/VersionControl/abc-interpreter/src/bcprelink -link_local_file lib/exe/bcstrip ~/VersionControl/abc-interpreter/src/bcstrip +link_local_file lib/exe/abcopt ~/projects/clean/abc-interpreter/src/abcopt +link_local_file lib/exe/bcgen ~/projects/clean/abc-interpreter/src/bcgen +link_local_file lib/exe/bclink ~/projects/clean/abc-interpreter/src/bclink +link_local_file lib/exe/bcprelink ~/projects/clean/abc-interpreter/src/bcprelink +link_local_file lib/exe/bcstrip ~/projects/clean/abc-interpreter/src/bcstrip # completion -for f in ~/VersionControl/clean-completion/*; do +for f in ~/projects/clean/completion/*; do [ -f "$f" ] || continue base="$(basename "$f")" if [[ "$base" == "Makefile" ]] || [[ "$base" == "README.md" ]] || [[ "$base" =~ .tar.gz$ ]]; then |