diff options
author | Robert Alessi <alessi@robertalessi.net> | 2022-11-15 19:12:49 +0100 |
---|---|---|
committer | Robert Alessi <alessi@robertalessi.net> | 2022-11-15 19:12:49 +0100 |
commit | c1511160615c73a0429aa673fbdff4003c0c75c8 (patch) | |
tree | 506b90ede8301a042572e11d83eef7eacbea47b4 /Makefile | |
parent | a3422f818d7fff7b8b78a0b1b291fd15c34f229a (diff) | |
download | ekdosis-c1511160615c73a0429aa673fbdff4003c0c75c8.tar.gz |
adapted find cmd in Makefiles to Unix-style
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -52,7 +52,7 @@ clean: testsamples | |||
52 | rm -f $(NAME).bib $(PWD)/TMP/*.bib | 52 | rm -f $(NAME).bib $(PWD)/TMP/*.bib |
53 | rm -rf .backup | 53 | rm -rf .backup |
54 | rm -rf auto | 54 | rm -rf auto |
55 | find -iname "*~" -or -iname "*.pdf" -or -iname "*_out*.tex" | xargs rm -rf | 55 | find ./ -iname "*~" -or -iname "*.pdf" -or -iname "*_out*.tex" | xargs rm -rf |
56 | find ./* -type f -iname "Makefile" $(findopts) $(findfiles) > ls-R | 56 | find ./* -type f -iname "Makefile" $(findopts) $(findfiles) > ls-R |
57 | find ./* -type f -iname "*.tex" | grep '/samples/' >> ls-R | 57 | find ./* -type f -iname "*.tex" | grep '/samples/' >> ls-R |
58 | rsync -aPr --files-from=ls-R . .backup | 58 | rsync -aPr --files-from=ls-R . .backup |