Skip to content

Commit

Permalink
clean up makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
FelixKratz committed Sep 8, 2021
1 parent 15173ac commit 6475ee0
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
BUILD_PATH=./build/JupyterApp.xcarchive

$(BUILD_PATH)/Products/Applications/JupyterApp.app: build
JupyterApp.app: build
xcodebuild archive -scheme JupyterLab -archivePath $(BUILD_PATH) -sdk macosx SKIP_INSTALL=NO BUILD_LIBRARIES_FOR_DISTRIBUTION=YES

install: $(BUILD_PATH)/Products/Applications/JupyterApp.app
cp -r $(BUILD_PATH)/Products/Applications/JupyterApp.app /Applications/JupyterApp.app
rm -rf ./build

copy: $(BUILD_PATH)/Products/Applications/JupyterApp.app
cp -r $(BUILD_PATH)/Products/Applications/JupyterApp.app ./JupyterApp.app
rm -rf ./build

install: JupyterApp.app
cp -r ./JupyterApp.app /Applications/JupyterApp.app

build:
mkdir build

Expand Down

0 comments on commit 6475ee0

Please sign in to comment.