Skip to content
Snippets Groups Projects
Commit d8f9492d authored by Sergey Kosukhin's avatar Sergey Kosukhin
Browse files

Do not remove arbitrary files ending with '~' when 'make clean'.

parent 43e042ad
No related branches found
No related tags found
2 merge requests!11Consolidation with CDI-PIO (1.8.x),!8Consolidation with CDI-PIO (1.8.x)
...@@ -6,8 +6,6 @@ doc/cdi_cman.pdf: ...@@ -6,8 +6,6 @@ doc/cdi_cman.pdf:
doc/cdi_fman.pdf: doc/cdi_fman.pdf:
(cd $(top_srcdir)/doc/tex ; ./makepdf_f ; mv cdi_fman.pdf .. ; ./cleanup) (cd $(top_srcdir)/doc/tex ; ./makepdf_f ; mv cdi_fman.pdf .. ; ./cleanup)
CLEANFILES = `ls *~`
EXTRA_DIST = \ EXTRA_DIST = \
config/default \ config/default \
config/interface.rb \ config/interface.rb \
......
...@@ -30,8 +30,6 @@ if ENABLE_ALL_STATIC ...@@ -30,8 +30,6 @@ if ENABLE_ALL_STATIC
createtable_LDFLAGS = -all-static createtable_LDFLAGS = -all-static
endif endif
CLEANFILES = `ls *~`
clean-local: clean-local-dirs clean-local: clean-local-dirs
.PHONY: clean-local-dirs .PHONY: clean-local-dirs
clean-local-dirs: clean-local-dirs:
......
...@@ -113,8 +113,6 @@ if ENABLE_SWIG ...@@ -113,8 +113,6 @@ if ENABLE_SWIG
endif endif
endif endif
CLEANFILES = `ls *~`
# overrides to make regular compilations also use libtool # overrides to make regular compilations also use libtool
COMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ COMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(CC) -static $(DEFS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) -static $(DEFS) \
......
...@@ -257,7 +257,7 @@ cdilib.c: ...@@ -257,7 +257,7 @@ cdilib.c:
(cd $(top_srcdir)/src ; ./make_cdilib ) (cd $(top_srcdir)/src ; ./make_cdilib )
all-local: $(PKGCONFIG_FILES) all-local: $(PKGCONFIG_FILES)
CLEANFILES = `ls *~` CLEANFILES =
if CREATE_ISOC if CREATE_ISOC
CLEANFILES += $(mo_cdi_modfile) CLEANFILES += $(mo_cdi_modfile)
endif endif
......
...@@ -138,7 +138,7 @@ test_resource_copy_mpi_LDADD = $(LDADD) $(UUID_C_LIB) ...@@ -138,7 +138,7 @@ test_resource_copy_mpi_LDADD = $(LDADD) $(UUID_C_LIB)
endif endif
clean-local: clean-local-dirs clean-local: clean-local-dirs
-rm -f *~ *.grb *.grb2 *.nc *.nc2 *.nc4 *.srv *.svc *.ext *.cksum *.ieg *.log *.stderr *.stdout -rm -f *.grb *.grb2 *.nc *.nc2 *.nc4 *.srv *.svc *.ext *.cksum *.ieg *.log *.stderr *.stdout
.PHONY: clean-local-dirs .PHONY: clean-local-dirs
clean-local-dirs: clean-local-dirs:
-rm -rf test_cdf_const.d *.dSYM -rm -rf test_cdf_const.d *.dSYM
......
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