14 lines
539 B
Makefile
14 lines
539 B
Makefile
|
DRONES_DIR = $(shell git config "borg.drones-directory" || echo "lib")
|
||
|
|
||
|
-include $(DRONES_DIR)/borg/borg.mk
|
||
|
|
||
|
bootstrap-borg:
|
||
|
@git submodule--helper clone --name borg --path $(DRONES_DIR)/borg \
|
||
|
--url git@github.com:emacscollective/borg.git
|
||
|
@cd $(DRONES_DIR)/borg; git symbolic-ref HEAD refs/heads/master
|
||
|
@cd $(DRONES_DIR)/borg; git reset --hard HEAD
|
||
|
|
||
|
|
||
|
scrub-submodules:
|
||
|
@for dir in `ls lib`; do printf "%s --\n" "$$dir"; cd "lib/$$dir"; for dirt in `git ls-files --others --exclude-standard`; do rm -iv "$$dirt"; done; cd ../..; done
|