mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-09 09:19:09 +02:00
makefile: add target to generate changelog
This commit is contained in:
parent
918e8853cd
commit
2964310b24
1 changed files with 4 additions and 0 deletions
4
Makefile
4
Makefile
|
|
@ -11,6 +11,7 @@ LDLIBS = -lespeak -lpthread
|
|||
INSTALL = install
|
||||
BINMODE = 0755
|
||||
MANMODE = 0644
|
||||
CHANGELOG_LIMIT?= --after="1 year ago"
|
||||
|
||||
SRCS = cli.c \
|
||||
espeak.c \
|
||||
|
|
@ -24,6 +25,9 @@ OBJS = ${SRCS:.c=.o}
|
|||
|
||||
all: espeakup
|
||||
|
||||
changelog:
|
||||
git log ${CHANGELOG_LIMIT} --format=full > ChangeLog
|
||||
|
||||
install: espeakup
|
||||
${INSTALL} -d ${DESTDIR}${BINDIR}
|
||||
${INSTALL} -m ${BINMODE} $< ${DESTDIR}${BINDIR}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue