Skip to content
Snippets Groups Projects
Commit 4b41952a authored by Maxime Jacquemin's avatar Maxime Jacquemin
Browse files

[Ivette] Two targets for binary and AppImage

We still have to choose what the behavior for `make dist`
parent e42dd84e
No related branches found
No related tags found
No related merge requests found
...@@ -75,13 +75,14 @@ help:: ...@@ -75,13 +75,14 @@ help::
# --- Ivette Distribution # --- Ivette Distribution
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
.PHONY: dist dist-dir .PHONY: dist dist-dir appimage binary
dist-dir: dist-dir:
@echo "Cleaning dist" @echo "Cleaning dist"
@rm -fr dist @rm -fr dist
dist: dist-dir dome-dist dist: dist-dir dome-dist
binary: dist-dir dome-binary
appimage: dist-dir dome-appimage appimage: dist-dir dome-appimage
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
...@@ -100,6 +101,7 @@ dome-pkg: pkg ...@@ -100,6 +101,7 @@ dome-pkg: pkg
dome-app: pkg dome-app: pkg
dome-dev: pkg dome-dev: pkg
dome-dist: pkg dome-dist: pkg
dome-binary: pkg
dome-appimage: pkg dome-appimage: pkg
pkg: $(LOADER) $(SANDBOX) pkg: $(LOADER) $(SANDBOX)
......
...@@ -248,16 +248,19 @@ dome-app: dome-pkg dome-templ ...@@ -248,16 +248,19 @@ dome-app: dome-pkg dome-templ
# --- Application Packaging # --- Application Packaging
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
.PHONY: dome-dist .PHONY: dome-dist dome-binary dome-appimage
dome-dist: dome-app # TODO: choose what the default is
dome-dist: dome-binary
dome-binary: dome-app
@echo "[Dome] packaging application (production)" @echo "[Dome] packaging application (production)"
DOME=$(DOME) yarn run electron-builder --dir -c.compression=store -c.mac.identity=null DOME=$(DOME) yarn run electron-builder --dir -c.compression=store -c.mac.identity=null
@echo "[Dome] application packaged in ./dist" @echo "[Dome] application packaged in ./dist"
dome-appimage: dome-app dome-appimage: dome-app
@echo "[Dome] packaging application (AppImage)" @echo "[Dome] packaging application (AppImage)"
DOME=$(DOME) yarn run electron-builder --linux DOME=$(DOME) yarn run electron-builder --linux -c.compression=store -c.mac.identity=null
@echo "[Dome] application packaged in ./dist" @echo "[Dome] application packaged in ./dist"
# -------------------------------------------------------------------------- # --------------------------------------------------------------------------
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment