summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMitja Felicijan <mitja.felicijan@gmail.com>2024-05-12 00:58:25 +0200
committerMitja Felicijan <mitja.felicijan@gmail.com>2024-05-12 00:58:25 +0200
commitf2fc9a58b9ed06941735fd9e57820374645f5337 (patch)
treeaeb1a6b04480f51e9572809f59112eded5a0f8b1 /Makefile
downloadmakext-f2fc9a58b9ed06941735fd9e57820374645f5337.tar.gz
Engage!
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile38
1 files changed, 38 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..1ee4ca8
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,38 @@
+M_DESCRIPTION="This provides some additional tools for makefiles."
+M_LICENSE="Released under the BSD two-clause license, see the LICENSE file for more information."
+
+include makext.mk
+
+help: .help
+
+demo: .assure
+
+build-app: # Build the application
+ @echo "Building the application..."
+
+clean-cache: # Clean the cache
+ @echo "Cleaning the cache..."
+
+deploy-prod: # Deploy to production
+ @echo "Deploying to production..."
+
+run-tests: # Run tests
+ @echo "Running tests..."
+
+optimize-images: # Optimize images
+ @echo "Optimizing images..."
+
+generate-docs: # Generate documentation
+ @echo "Generating documentation..."
+
+lint-code: # Lint code
+ @echo "Linting code..."
+
+package-release: # Package release
+ @echo "Packaging release..."
+
+update-dependencies: # Update dependencies
+ @echo "Updating dependencies..."
+
+deploy-staging: # Deploy to staging environment
+ @echo "Deploying to staging environment..."