diff options
-rw-r--r-- | Makefile.am | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 728fe20ad..5ac5bf475 100644 --- a/Makefile.am +++ b/Makefile.am @@ -42,6 +42,10 @@ clean-coverage: find . -type f -name "*.gcda" -exec rm "{}" + find . -type f -name "*.gcno" -exec rm "{}" + +pull: + git pull --rebase + if test -d ../nDPI-custom; then echo "Pulling ../nDPI-custom"; cd ../nDPI-custom; git pull --rebase; cd ../nDPI; fi + changelog: git log --since={`curl -s https://github.com/ntop/ndpi/releases | grep datetime | head -n1 | egrep -o "[0-9]+\-[0-9]+\-[0-9]+"`} --name-only --pretty=format:" - %s" | grep "^ " > CHANGELOG.latest |