summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog14
-rw-r--r--Makefile12
2 files changed, 11 insertions, 15 deletions
diff --git a/ChangeLog b/ChangeLog
index 52a88a976a..795de89707 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,17 +1,3 @@
-Summary of changes from v76 to v077
-============================================
-
-Kay Sievers:
- merge two consecutive static strlcat's
- don't return an error, if "ignore_device" is used
- remove outdated and misleading stuff
- move SEQNUM event skipping to udevsend
-
-Marco d'Itri:
- allow to overwrite the configured udev_root by exporting UDEV_ROOT
- let udevsend ignore events with SEQNUM set
-
-
Summary of changes from v75 to v076
============================================
diff --git a/Makefile b/Makefile
index 5995b57697..d4ee3eb6be 100644
--- a/Makefile
+++ b/Makefile
@@ -377,9 +377,19 @@ test tests: all
.PHONY: test tests
buildtest:
- ./test/simple-build-check.sh
+ test/simple-build-check.sh
.PHONY: buildtest
+ChangeLog: Makefile
+ @ mv $@ $@.tmp
+ @ echo "Summary of changes from v$(VERSION) to v$(shell printf '%03i' $$(expr $(VERSION) + 1))" >> $@
+ @ echo "============================================" >> $@
+ @ git log --pretty=short $(VERSION)..HEAD | git shortlog >> $@
+ @ echo >> $@
+ @ cat $@
+ @ cat $@.tmp >> $@
+ @ rm $@.tmp
+
gcov-all:
$(MAKE) clean all STRIPCMD= USE_GCOV=true
@echo