Save change in various files

Former-commit-id: 428f8ee77c584b79cc2ef45eef2902c3e0754c77
This commit is contained in:
2023-02-23 23:45:41 +01:00
parent 05323f960c
commit 6c5fc8f65b
5 changed files with 58 additions and 9 deletions

View File

@ -43,6 +43,11 @@ all: obitools
packages: $(patsubst %,pkg-%,$(PACKAGES))
obitools: $(patsubst %,$(OBITOOLS_PREFIX)%,$(OBITOOLS))
man:
make -C doc man
obibook:
make -C doc obibook
doc: man obibook
macos-pkg:
@bash pkgs/macos/macos-installer-builder-master/macOS-x64/build-macos-x64.sh \
@ -57,3 +62,4 @@ $(foreach P,$(PACKAGE_DIRS),$(eval $(call MAKE_PKG_RULE,$(P))))
$(foreach P,$(OBITOOLS_DIRS),$(eval $(call MAKE_OBITOOLS_RULE,$(P))))
.PHONY: all packages obitools man obibook doc