set vp9 in flags not cflags
This commit is contained in:
parent
3ac81e2860
commit
1540bbfb39
1 changed files with 2 additions and 2 deletions
4
Makefile
4
Makefile
|
@ -6,9 +6,9 @@ BINDIR ?= ${DESTDIR}${PREFIX}/bin
|
|||
MAN1DIR ?= ${DESTDIR}${PREFIX}/man/man1
|
||||
|
||||
CC ?= gcc
|
||||
CFLAGS ?= -Wall -Wno-parantheses -O3 -DHAVE_VP9=1
|
||||
CFLAGS ?= -Wall -Wno-parantheses -O3
|
||||
FLAGS += -ffast-math -fsigned-char -fforce-addr -fomit-frame-pointer -finline-functions -funroll-loops
|
||||
FLAGS = ${CFLAGS}
|
||||
FLAGS = -DHAVE_VP9=1 ${CFLAGS}
|
||||
FLAGS += -I. -Isrc -Isrc/halloc
|
||||
|
||||
INSTALL = install
|
||||
|
|
Loading…
Reference in a new issue