From 8b8db6bf3821eace5f1e563a3910e7be2508b1bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?St=C3=A9phane=20Adjemian=20=28Lupi=29?= Date: Wed, 15 Jun 2016 14:39:38 +0200 Subject: [PATCH] Updated tests/Makefile clean rule. Ensure tha we remove all tex, aux, log and eps generated files. --- tests/Makefile.am | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/Makefile.am b/tests/Makefile.am index 98e39173d..7deedf78e 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -713,3 +713,8 @@ clean-local: rm -f estimation/test_matrix.mat rm -f initval_file/ramst_initval_file_data_col_vec_mat.mat initval_file/ramst_initval_file_data_row_vec_mat.mat initval_file/ramst_initval_file_excel.xls + + find . -name "*.tex" -type f -delete + find . -name "*.aux" -type f -delete + find . -name "*.log" -type f -delete + find . -name "*.eps" -type f -delete