mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-09 09:19:09 +02:00
fixed makefile
There was a bug in the makefile which was not installing the binary correctly. This is now fixed.
This commit is contained in:
parent
22ea5c4d1d
commit
c7bece776d
1 changed files with 10 additions and 6 deletions
16
Makefile
16
Makefile
|
|
@ -1,14 +1,18 @@
|
|||
CC = cc
|
||||
INSTALL = /usr/bin/install
|
||||
RM = /bin/rm
|
||||
|
||||
PREFIX = /usr
|
||||
BINDIR = $(PREFIX)/bin
|
||||
|
||||
LDLIBS = -lespeak
|
||||
|
||||
PROGRAM = espeakup
|
||||
all: espeakup
|
||||
|
||||
all: $(PROGRAM)
|
||||
install: espeakup
|
||||
$(INSTALL) -d $(DESTDIR)$(BINDIR)
|
||||
$(INSTALL) -m 0755 $(PROGRAM) $(DESTDIR)$(BINDIR)
|
||||
|
||||
clean:
|
||||
rm $(PROGRAM)
|
||||
|
||||
install: $(PROGRAM)
|
||||
install -m 0755 $(PROGRAM) $(DESTDIR)$(PREFIX)/bin
|
||||
$(RM) espeakup
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue