mirror of
https://github.com/canonical/ubuntu-desktop-provision.git
synced 2025-07-20 16:45:49 +00:00
17 lines
394 B
Makefile
17 lines
394 B
Makefile
SUBIQUITY_DIR = packages/subiquity_client/subiquity
|
|
|
|
$(SUBIQUITY_DIR):
|
|
[ -d $(SUBIQUITY_DIR) ] || git submodule update --init --recursive
|
|
|
|
.PHONY: aptdeps
|
|
aptdeps: $(SUBIQUITY_DIR)
|
|
$(MAKE) -C $(SUBIQUITY_DIR) aptdeps
|
|
|
|
.PHONY: gitdeps
|
|
gitdeps: $(SUBIQUITY_DIR)
|
|
$(MAKE) -C $(SUBIQUITY_DIR) gitdeps
|
|
|
|
.PHONY: install_deps
|
|
install_deps: $(SUBIQUITY_DIR)
|
|
$(MAKE) -C $(SUBIQUITY_DIR) install_deps
|