Skip to content
Snippets Groups Projects
Commit 8430e90f authored by Thomas Jahns's avatar Thomas Jahns :cartwheel:
Browse files

build system: clean up NEC compiler report files.

parent 04b91920
No related branches found
No related tags found
1 merge request!31Draft: Attempt at fuller exchanger interface
......@@ -102,7 +102,10 @@ FCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(FC) -static $(AM_FCFLAGS) $(FCFLAGS)
clean-local:
-rm -f *.i *.dbg
-rm -f *.i ??????????.dbg \
`printf "%s\n" $(SOURCES) \
| $(SED) -n -e 's/\(.*\/\)\{0,1\}\(.*\)\.c$$/\2.L/p' \
-e 's/\(.*\/\)\{0,1\}\(.*\)\.f90$$/\2.L/p'`
-rm -rf *.dSYM
# When an out-of-source build takes place, the 'distclean' recipe of the
......
......@@ -93,7 +93,10 @@ FCCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=FC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(FC) -static $(AM_FCFLAGS) $(FCFLAGS)
clean-local:
-rm -f *.$(FCMODEXT) i.*.L *.i *.dbg
-rm -f *.$(FCMODEXT) i.*.L *.i ??????????.dbg \
`printf "%s\n" $(SOURCES) \
| $(SED) -n -e 's/\(.*\/\)\{0,1\}\(.*\)\.c$$/\2.L/p' \
-e 's/\(.*\/\)\{0,1\}\(.*\)\.f90$$/\2.L/p'`
-rm -rf *.dSYM
# When an out-of-source build takes place, the 'distclean' recipe of the
......
......@@ -362,7 +362,10 @@ xtinclude_Makefile.inc: Makefile
all-local: xtinclude_Makefile.inc
clean-local:
-rm -f *.$(FCMODEXT) i.*.L *.i *.dbg *.tmp
-rm -f *.$(FCMODEXT) i.*.L *.i *.dbg *.tmp \
`printf "%s\n" $(SOURCES) \
| $(SED) -n -e 's/\(.*\/\)\{0,1\}\(.*\)\.c$$/\2.L/p' \
-e 's/\(.*\/\)\{0,1\}\(.*\)\.f90$$/\2.L/p'`
# When an out-of-source build takes place, the recipe of the rule expects that
......
......@@ -379,7 +379,9 @@ if with_fortran
endif
clean-local:
-rm -f *.$(FCMODEXT) *.i *.dbg
-rm -f *.$(FCMODEXT) *.i ??????????.dbg \
`printf "%s\n" $(SOURCES) \
| sed -n -e 's/\.c$/.L/p' -e 's/\.f90$/.L/p'`
-rm -rf *.dSYM
# When an out-of-source build takes place, the 'distclean' recipe of the
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment