Compare commits

...

4 Commits

Author SHA1 Message Date
1748a26e61 tweaks + made docs...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2023-08-20 22:42:44 +03:00
e1cc61010f cleanup...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2023-08-20 22:37:26 +03:00
a2e6b44856 cleanup...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2023-08-20 22:29:08 +03:00
516ca931c4 added CLI install to Makefile...
Signed-off-by: Alex A. Naanou <alex.nanou@gmail.com>
2023-08-20 22:25:30 +03:00
2 changed files with 25 additions and 19 deletions

View File

@ -642,19 +642,13 @@ electron-run: dev
##----------------------------------------------- Windows installer ---
#------------------------------------------------ Windows installer ---
# XXX
##----------------------------------------------------- Deb package ---
# XXX
##----------------------------------------------------- CLI package ---
#------------------------------------------------------ CLI package ---
# XXX
@ -944,9 +938,17 @@ $(DIST_DIR)/$(APP_NAME)-%.zip: $(BUILD_DIR)/$(APP_NAME)-%.$(BUILD_MODE).zip
#----------------------------------------------------------------------
# cli...
# XXX
##------------------------------------------------------------- CLI ---
.PHONY: devel-cli
devel-cli: ## Install CLI interface as a link to this tree.
devel-cli: dev
npm link
.PHONY: cli
cli: ## install CLI interface as independent package.
cli: dev
npm install -g .
@ -969,5 +971,6 @@ $(DIST_DIR)/$(APP_NAME)-%.zip: $(BUILD_DIR)/$(APP_NAME)-%.$(BUILD_MODE).zip
##
#**********************************************************************
# vim:set nowrap :
# vim:set nowrap :

View File

@ -98,18 +98,20 @@ Generic targets:
all: Run the full build chain
doc: Build documentation
dev: Build the development environment
dev-npm: Install the npm global dev package (might need sudo)
dist: Build distributable package
test-dist: Build testing distributable package
deploy: Run ./scripts/deploy.sh on contents of DIST_DIR
run: Run app in-place
Cleanup:
clean: Clean the BUILD_DIR directory
clean: Cleanup
clean-generated: Clean generated files
clean-dist: Clean DIST_DIR directory
clean-all: Clean all
Generic components:
css: Build CSS
js: Build JS modules
app-dir-full: Build full app directory
app-dir-minimal: Build minimal app directory
@ -122,15 +124,16 @@ Electron:
electron-unpacked: Make unpacked electron app
electron-run: Run app in electron
Windows installer:
Deb package:
CLI package:
Open Desktop:
Patches:
patched-requirejs: Patch requirejs (see: NOTES)
unpatched-requirejs: Unpatch requirejs
CLI:
devel-cli: Install CLI interface as a link to this tree.
cli: install CLI interface as independent package.
---
This file was generated by: make doc/MAKE