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
|
MAN1DIR ?= ${DESTDIR}${PREFIX}/man/man1
|
||||||
|
|
||||||
CC ?= gcc
|
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 += -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
|
FLAGS += -I. -Isrc -Isrc/halloc
|
||||||
|
|
||||||
INSTALL = install
|
INSTALL = install
|
||||||
|
|
Loading…
Reference in a new issue