mirror of https://github.com/citusdata/citus.git
Fix minor issues with makefile targets (#4717)
parent
6a050ab6b9
commit
2f90ce931b
4
Makefile
4
Makefile
|
@ -46,8 +46,8 @@ check-style:
|
||||||
cd ${citus_abs_top_srcdir} && citus_indent --quiet --check
|
cd ${citus_abs_top_srcdir} && citus_indent --quiet --check
|
||||||
.PHONY: reindent check-style
|
.PHONY: reindent check-style
|
||||||
|
|
||||||
# depend on install for now
|
# depend on install-all so that downgrade scripts are installed as well
|
||||||
check: all install
|
check: all install-all
|
||||||
$(MAKE) -C src/test/regress check-full
|
$(MAKE) -C src/test/regress check-full
|
||||||
|
|
||||||
.PHONY: all check clean install install-downgrades install-all
|
.PHONY: all check clean install install-downgrades install-all
|
||||||
|
|
|
@ -90,11 +90,11 @@ install: cleanup-before-install
|
||||||
|
|
||||||
# install and install-downgrades should be run sequentially
|
# install and install-downgrades should be run sequentially
|
||||||
install-all: install
|
install-all: install
|
||||||
make install-downgrades
|
$(MAKE) install-downgrades
|
||||||
|
|
||||||
install-downgrades: $(generated_downgrade_sql_files)
|
install-downgrades: $(generated_downgrade_sql_files)
|
||||||
$(INSTALL_DATA) $(generated_downgrade_sql_files) '$(DESTDIR)$(datadir)/$(datamoduledir)/'
|
$(INSTALL_DATA) $(generated_downgrade_sql_files) '$(DESTDIR)$(datadir)/$(datamoduledir)/'
|
||||||
|
|
||||||
clean-full:
|
clean-full:
|
||||||
make clean
|
$(MAKE) clean
|
||||||
rm -rf $(safestringlib_builddir)
|
rm -rf $(safestringlib_builddir)
|
||||||
|
|
Loading…
Reference in New Issue