mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-09 09:19:09 +02:00
remove Makefile
it isn't working anymore.
This commit is contained in:
parent
228ba84af0
commit
8b4fd0f907
1 changed files with 0 additions and 37 deletions
37
Makefile
37
Makefile
|
|
@ -1,37 +0,0 @@
|
|||
PREFIX = /usr/local
|
||||
BINDIR = ${PREFIX}/bin
|
||||
MANDIR = ${PREFIX}/share/man
|
||||
SRC_DIR = src
|
||||
DEPFLAGS = -MMD
|
||||
WARNFLAGS = -Wall -Wpedantic \
|
||||
-Wextra
|
||||
|
||||
CFLAGS += ${DEPFLAGS} ${WARNFLAGS}
|
||||
|
||||
LDLIBS = -lespeak-ng -lpthread -lasound -lm
|
||||
|
||||
INSTALL = install
|
||||
BINMODE = 0755
|
||||
MANMODE = 0644
|
||||
|
||||
SRC = $(wildcard $(SRC_DIR)/*.c)
|
||||
OBJECTS := $(patsubst %.c,%.o,$(wildcard $(SRC_DIR)/*.c))
|
||||
|
||||
all: espeakup
|
||||
|
||||
install: espeakup
|
||||
${INSTALL} -d ${DESTDIR}${BINDIR}
|
||||
${INSTALL} -m ${BINMODE} $< ${DESTDIR}${BINDIR}
|
||||
${INSTALL} -d ${DESTDIR}${MANDIR}/man8
|
||||
${INSTALL} -m ${MANMODE} doc/espeakup.8 ${DESTDIR}${MANDIR}/man8
|
||||
|
||||
espeakup: ${OBJECTS}
|
||||
cc $(LDLIBS) -o ./espeakup $(OBJECTS)
|
||||
|
||||
clean:
|
||||
${RM} $(SRC_DIR)/*.d $(SRC_DIR)/*.o
|
||||
|
||||
distclean: clean
|
||||
${RM} espeakup
|
||||
|
||||
-include ${SRCS:.c=.d}
|
||||
Loading…
Add table
Add a link
Reference in a new issue