Introducing vue module, native loader

This commit is contained in:
2020-08-02 21:21:59 -05:00
parent 3dc19b5c9e
commit b86c046dd5
7 changed files with 205 additions and 17 deletions
+9 -3
View File
@@ -19,6 +19,7 @@ default:
@echo
@echo "Usage: make <recipe>"
@echo " Package recipes:"
@echo " build Compiles the native modules and desktop application"
@echo " bundle Produces a .jar and deletes all intermediate files"
@echo " clean Deletes all output files"
@echo " core Check the native core library for style errors"
@@ -38,12 +39,17 @@ default:
# Package Recipes #
###############################################################################
# Perform a full build process
.PHONY: bundle
bundle:
# Perform a full build process of the native modules and desktop application
.PHONY: build
build:
@make -s core
@make -s desktop
@make -s native
# Performs a full build and packages it into a .jar
.PHONY: bundle
bundle:
@make -s build
@make -s pack
@echo " Removing temporary files"
@make -s clean_most