Fixed incorrect dependence of distclean on clean.
This commit is contained in:
parent
9504495870
commit
c58e2eee45
13
Makefile
13
Makefile
@ -189,7 +189,18 @@ clean:
|
||||
done
|
||||
rm -rf tca.map pchdir *inslog*
|
||||
|
||||
distclean: clean
|
||||
distclean:
|
||||
@ \
|
||||
rm -Rf hypre; \
|
||||
for i in ${HYPRE_DIRS} ${HYPRE_EXTRA_DIRS} ${HYPRE_BABEL_DIRS} ${HYPRE_EXAMPLE_DIRS}; \
|
||||
do \
|
||||
if [ -d $$i ]; \
|
||||
then \
|
||||
echo "Dist-Cleaning $$i ..."; \
|
||||
(cd $$i && $(MAKE) $@); \
|
||||
fi; \
|
||||
done
|
||||
rm -rf tca.map pchdir *inslog*
|
||||
rm -rf ./config/Makefile.config
|
||||
rm -rf ./TAGS
|
||||
rm -rf ./autom4te.cache
|
||||
|
||||
Loading…
Reference in New Issue
Block a user