diff options
Diffstat (limited to 'code/matlab/Makefile')
-rw-r--r-- | code/matlab/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/code/matlab/Makefile b/code/matlab/Makefile new file mode 100644 index 0000000..3546e44 --- /dev/null +++ b/code/matlab/Makefile @@ -0,0 +1,10 @@ +.PHONY: all symlinks clean + +all: symlinks + +symlinks: + ls | grep '.m$$' | sed 's/\.m$$//' | xargs -n1 ln -f -s ../glue/exec-matlab + +clean: + ls | grep '.m$$' | sed 's/\.m$$//' | xargs rm || true + rm *~ || true
\ No newline at end of file |