mirror of https://github.com/citusdata/citus.git
Add clean-full to also clean full builds of vendored libraries
parent
92d7a40d1d
commit
8e7eaaf949
4
Makefile
4
Makefile
|
@ -26,7 +26,9 @@ install-headers: extension
|
||||||
$(INSTALL_DATA) $(citus_abs_srcdir)/src/include/distributed/*.h '$(DESTDIR)$(includedir_server)/distributed/'
|
$(INSTALL_DATA) $(citus_abs_srcdir)/src/include/distributed/*.h '$(DESTDIR)$(includedir_server)/distributed/'
|
||||||
clean-extension:
|
clean-extension:
|
||||||
$(MAKE) -C src/backend/distributed/ clean
|
$(MAKE) -C src/backend/distributed/ clean
|
||||||
.PHONY: extension install-extension clean-extension
|
clean-full:
|
||||||
|
$(MAKE) -C src/backend/distributed/ clean-full
|
||||||
|
.PHONY: extension install-extension clean-extension clean-full
|
||||||
# Add to generic targets
|
# Add to generic targets
|
||||||
install: install-extension install-headers
|
install: install-extension install-headers
|
||||||
clean: clean-extension
|
clean: clean-extension
|
||||||
|
|
|
@ -65,7 +65,7 @@ ifneq (,$(SQL_Po_files))
|
||||||
include $(SQL_Po_files)
|
include $(SQL_Po_files)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
.PHONY: check-sql-snapshots
|
.PHONY: check-sql-snapshots clean-full
|
||||||
|
|
||||||
check-sql-snapshots:
|
check-sql-snapshots:
|
||||||
bash -c '\
|
bash -c '\
|
||||||
|
@ -79,3 +79,7 @@ cleanup-before-install:
|
||||||
rm -f $(DESTDIR)$(datadir)/$(datamoduledir)/citus*
|
rm -f $(DESTDIR)$(datadir)/$(datamoduledir)/citus*
|
||||||
|
|
||||||
install: cleanup-before-install
|
install: cleanup-before-install
|
||||||
|
|
||||||
|
clean-full:
|
||||||
|
make clean
|
||||||
|
rm -rf $(safestringlib_builddir)
|
||||||
|
|
Loading…
Reference in New Issue