mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-09 09:19:09 +02:00
fix makefile to not define variables if they are already defined
This commit is contained in:
parent
ffe397fb91
commit
311b691195
1 changed files with 5 additions and 7 deletions
12
Makefile
12
Makefile
|
|
@ -1,12 +1,10 @@
|
|||
INSTALL = install
|
||||
INSTALL ?= install
|
||||
|
||||
PREFIX = /usr/local
|
||||
MANDIR = $(PREFIX)/share/man/man8
|
||||
BINDIR = $(PREFIX)/bin
|
||||
PREFIX ?= /usr/local
|
||||
MANDIR ?= $(PREFIX)/share/man/man8
|
||||
BINDIR ?= $(PREFIX)/bin
|
||||
|
||||
ifndef AUDIO
|
||||
AUDIO=portaudio
|
||||
endif
|
||||
AUDIO ?= portaudio
|
||||
|
||||
alsa_SRCS = alsa.c
|
||||
portaudio_SRCS = portaudio.c
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue