From 4bbf29ac1b3f244a9fb9d11d43548e0480ea1eb9 Mon Sep 17 00:00:00 2001
From: sebastien <sebastien@ac1d8469-bf42-47a9-8791-bf33cf982152>
Date: Fri, 27 Mar 2009 17:47:30 +0000
Subject: [PATCH] trunk: removed some bashisms in Makefiles (merge needed)
git-svn-id: https://www.dynare.org/svn/dynare/trunk@2536 ac1d8469-bf42-47a9-8791-bf33cf982152
---
doc/Makefile | 6 ++----
doc/macroprocessor/Makefile | 2 +-
doc/preprocessor/Makefile | 2 +-
3 files changed, 4 insertions(+), 6 deletions(-)
diff --git a/doc/Makefile b/doc/Makefile
index 0c01f6043b..1bdc2a6355 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -19,10 +19,8 @@ manual.pdf: manual.xml
dblatex manual.xml
clean:
- rm -f *~
- rm -f guide.{pdf,log,aux}
- rm -f bvar-a-la-sims.{pdf,log,aux}
- rm -rf manual.pdf manual-html
+ rm -f *~ *.pdf *.log *.aux
+ rm -rf manual-html
make -C preprocessor clean
make -C macroprocessor clean
make -C userguide clean
diff --git a/doc/macroprocessor/Makefile b/doc/macroprocessor/Makefile
index 8a8c2e1994..5269177449 100644
--- a/doc/macroprocessor/Makefile
+++ b/doc/macroprocessor/Makefile
@@ -3,4 +3,4 @@ macroprocessor.pdf: macroprocessor.tex old-design.pdf new-design.pdf
pdflatex macroprocessor
clean:
- rm -f macroprocessor.{pdf,toc,aux,log,nav,snm,vrb,out} *~
+ rm -f macroprocessor.pdf *.toc *.aux *.log *.nav *.snm *.vrb *.out *~
diff --git a/doc/preprocessor/Makefile b/doc/preprocessor/Makefile
index 4dbd5c5e98..21ab83486f 100644
--- a/doc/preprocessor/Makefile
+++ b/doc/preprocessor/Makefile
@@ -3,4 +3,4 @@ preprocessor.pdf: preprocessor.tex expr.png expr-sharing.png matrices.png overvi
pdflatex preprocessor
clean:
- rm -f preprocessor.{pdf,toc,aux,log,nav,snm,vrb,out} *~
+ rm -f *.pdf *.toc *.aux *.log *.nav *.snm *.vrb *.out *~
--
GitLab