mirror of
https://github.com/koreader/koreader
synced 2024-11-08 07:10:27 +00:00
5a465f413b
- forward unknown make targets to base - add `cmake` and `staging` directories to ignored output artifacts - drop `package.path` and `package.cpath` luarocks specific entries
15 lines
624 B
Makefile
15 lines
624 B
Makefile
MACOS_DIR = $(PLATFORM_DIR)/mac
|
|
|
|
update: all
|
|
mkdir -p \
|
|
$(INSTALL_DIR)/bundle/Contents/MacOS \
|
|
$(INSTALL_DIR)/bundle/Contents/Resources
|
|
cp -pv $(MACOS_DIR)/koreader.icns $(INSTALL_DIR)/bundle/Contents/Resources/icon.icns
|
|
cp -LR $(INSTALL_DIR)/koreader $(INSTALL_DIR)/bundle/Contents
|
|
cp -pRv $(MACOS_DIR)/menu.xml $(INSTALL_DIR)/bundle/Contents/MainMenu.xib
|
|
ibtool --compile "$(INSTALL_DIR)/bundle/Contents/Resources/Base.lproj/MainMenu.nib" "$(INSTALL_DIR)/bundle/Contents/MainMenu.xib"
|
|
rm -rfv "$(INSTALL_DIR)/bundle/Contents/MainMenu.xib"
|
|
$(CURDIR)/platform/mac/do_mac_bundle.sh $(INSTALL_DIR)
|
|
|
|
PHONY += update
|