removed windows and linux split subdir
This commit is contained in:
parent
83dda10fa8
commit
065b982734
280 changed files with 9053 additions and 426 deletions
48
.antidote/makefile
Normal file
48
.antidote/makefile
Normal file
|
|
@ -0,0 +1,48 @@
|
|||
# Do not remove ##? comments. They are used by 'help' to construct the help docs.
|
||||
##? antidote - the cure to slow zsh plugin management
|
||||
##?
|
||||
##? Usage: make <command>"
|
||||
##?
|
||||
##? Commands:
|
||||
|
||||
.DEFAULT_GOAL := help
|
||||
all : build buildman test unittest bump-maj bump-min bump-rev help
|
||||
.PHONY : all
|
||||
|
||||
##? help display this makefile's help information
|
||||
help:
|
||||
@grep "^##?" makefile | cut -c 5-
|
||||
|
||||
##? build run build tasks like generating man pages
|
||||
build:
|
||||
./tools/buildman
|
||||
./tools/run-clitests
|
||||
./tools/bumpver revision
|
||||
|
||||
##? buildman rebuild man pages
|
||||
buildman:
|
||||
./tools/buildman
|
||||
|
||||
##? test run tests
|
||||
test:
|
||||
./tools/run-clitests
|
||||
|
||||
##? unittest run only unittests
|
||||
unittest:
|
||||
./tools/run-clitests --unit
|
||||
|
||||
##? bump-maj bump the major version (X.0.0)
|
||||
bump-maj:
|
||||
./tools/bumpver major
|
||||
|
||||
##? bump-min bump the minor version (0.X.0)
|
||||
bump-min:
|
||||
./tools/bumpver minor
|
||||
|
||||
##? bump-rev bump the revision version (0.0.X)
|
||||
bump-rev:
|
||||
./tools/bumpver revision
|
||||
|
||||
##? bumpver bump the revision version (0.0.X)
|
||||
bumpver:
|
||||
./tools/bumpver revision
|
||||
Loading…
Add table
Add a link
Reference in a new issue