From 2f0e31888f6d1d347fe5ffb455eb6aa2ad1569c3 Mon Sep 17 00:00:00 2001 From: Semyon Pisarev Date: Sun, 15 Jan 2017 19:46:23 +0300 Subject: Add tiny wrapper to start from '$HOME' --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index b4bc91d0..4f4ca807 100644 --- a/Makefile +++ b/Makefile @@ -26,9 +26,9 @@ $(TARGET): app: | $(APP_NAME) ## Clone Alacritty.app template and mount binary $(APP_NAME): $(TARGET) $(APP_TEMPLATE) - @mkdir -p $(APP_DIR) - @cp -R $(APP_TEMPLATE) $(APP_DIR) - @cp $(APP_BINARY) $(APP_BINARY_DIR) + @mkdir -p $(APP_BINARY_DIR) + @cp -fRp $(APP_TEMPLATE) $(APP_DIR) + @cp -fp $(APP_BINARY) $(APP_BINARY_DIR) @echo "Created '$@' in '$(APP_DIR)'" dmg: | $(DMG_NAME) ## Pack Alacritty.app into .dmg -- cgit