Skip to content

Commit

Permalink
git tag make target
Browse files Browse the repository at this point in the history
  • Loading branch information
CamJN committed Jan 23, 2024
1 parent 2dcf8c5 commit 6479fef
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,12 @@ bump:
@ruby -e 'path = STDIN.read.strip;File.write(path, File.read(path).sub(/^(PROJECT_NUMBER += +)([0-9]+)(?:(?:\.)([0-9]+)){1,}/){|s|"#{$$1}#{$$2}.#{$$3.to_i + 1}"})' <<< doxygen.conf
@env PKG_CONFIG_PATH=. pkg-config --modversion getargv++

tag:
git add -A
git commit -m 'version $(VERSION)'
git tag '$(VERSION)'
git push tag '$(VERSION)'

docs: doxygen.conf $(SOURCES) $(HEADERS)
doxygen -q doxygen.conf

Expand Down

0 comments on commit 6479fef

Please sign in to comment.