mirror of
https://github.com/linux-speakup/espeakup.git
synced 2026-08-21 23:34:18 +02:00
allow users to override CFLAGS
This fixes an issue with the Makefile that was not allowing users to override cflags and keeping -Wall in the flags when compiling.
This commit is contained in:
parent
4e7ae23757
commit
40f152e11f
1 changed files with 3 additions and 2 deletions
5
Makefile
5
Makefile
|
|
@ -1,7 +1,5 @@
|
|||
INSTALL = install
|
||||
|
||||
CFLAGS = -Wall
|
||||
|
||||
SRCS = \
|
||||
cli.c \
|
||||
espeakup.c \
|
||||
|
|
@ -42,3 +40,6 @@ queue.o: queue.c espeakup.h
|
|||
softsynth.o: softsynth.c espeakup.h
|
||||
|
||||
synth.o: synth.c espeakup.h
|
||||
|
||||
%.o: %.c
|
||||
$(CC) -c -Wall $(CFLAGS) $(CPPFLAGS) -o $@ $<
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue