mirror of https://github.com/lapce/lapce.git
Merge pull request #46 from liyechen/master
update typo in Makefile comment
This commit is contained in:
commit
33089dd4f0
8
Makefile
8
Makefile
|
@ -33,8 +33,8 @@ $(TARGET)-universal:
|
|||
@lipo target/{x86_64,aarch64}-apple-darwin/release/$(TARGET) -create -output $(APP_BINARY)
|
||||
/usr/bin/codesign -vvv --deep --entitlements $(ASSETS_DIR)/entitlements.plist --strict --options=runtime --force -s FAC8FBEA99169DC1980731029648F110628D6A32 $(APP_BINARY)
|
||||
|
||||
app: $(APP_NAME)-native ## Create an Alacritty.app
|
||||
app-universal: $(APP_NAME)-universal ## Create a universal Alacritty.app
|
||||
app: $(APP_NAME)-native ## Create a Lapce.app
|
||||
app-universal: $(APP_NAME)-universal ## Create a universal Lapce.app
|
||||
$(APP_NAME)-%: $(TARGET)-%
|
||||
@mkdir -p $(APP_BINARY_DIR)
|
||||
@mkdir -p $(APP_EXTRAS_DIR)
|
||||
|
@ -46,8 +46,8 @@ $(APP_NAME)-%: $(TARGET)-%
|
|||
xattr -c $(APP_DIR)/$(APP_NAME)/Contents/Resources/lapce.icns
|
||||
/usr/bin/codesign -vvv --deep --entitlements $(ASSETS_DIR)/entitlements.plist --strict --options=runtime --force -s FAC8FBEA99169DC1980731029648F110628D6A32 $(APP_DIR)/$(APP_NAME)
|
||||
|
||||
dmg: $(DMG_NAME)-native ## Create an Alacritty.dmg
|
||||
dmg-universal: $(DMG_NAME)-universal ## Create a universal Alacritty.dmg
|
||||
dmg: $(DMG_NAME)-native ## Create a Lapce.dmg
|
||||
dmg-universal: $(DMG_NAME)-universal ## Create a universal Lapce.dmg
|
||||
$(DMG_NAME)-%: $(APP_NAME)-%
|
||||
@echo "Packing disk image..."
|
||||
@ln -sf /Applications $(DMG_DIR)/Applications
|
||||
|
|
Loading…
Reference in New Issue