Skip to content
Snippets Groups Projects
Commit 6e3f6352 authored by Gin Derick Magno's avatar Gin Derick Magno
Browse files

delete makefile

parent dd0d91b5
No related branches found
No related tags found
1 merge request!1Merge chm-core-dev to chm-core-stg
Pipeline #53746 passed
# Define the version number
VERSION := 1.0.0
# Default target
all: build
# Build target
build:
@echo "Building version $(VERSION)"
# Add your build commands here
# Target to update the version
set-version:
@read -p "Enter new version number: " new_version; \
sed -i 's/VERSION := $(VERSION)/VERSION := $$new_version/' Makefile; \
echo "Version updated to $$new_version"
.PHONY: all build set-version
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