update nestegg, remove halloc
This commit is contained in:
parent
0bbb337e1c
commit
7d545960f6
9 changed files with 997 additions and 1038 deletions
6
Makefile
6
Makefile
|
|
@ -1,5 +1,5 @@
|
|||
PROG = oxframe
|
||||
SRC = src/oxframe.c src/nestegg.c src/halloc/halloc.c
|
||||
SRC = src/oxframe.c src/nestegg.c
|
||||
|
||||
PREFIX ?= /usr/local
|
||||
BINDIR ?= ${DESTDIR}${PREFIX}/bin
|
||||
|
|
@ -9,7 +9,7 @@ CC ?= gcc
|
|||
CFLAGS ?= -Wall -Wno-parantheses -O3
|
||||
FLAGS += -ffast-math -fsigned-char -fforce-addr -fomit-frame-pointer -finline-functions -funroll-loops
|
||||
FLAGS = -DHAVE_VP9=1 ${CFLAGS}
|
||||
FLAGS += -I. -Isrc -Isrc/halloc
|
||||
FLAGS += -I. -Isrc
|
||||
|
||||
INSTALL = install
|
||||
|
||||
|
|
@ -27,7 +27,7 @@ ${PROG}: ${SRC}
|
|||
${CC} -std=c99 ${FLAGS} ${INCLUDEFLAGS} -o ${PROG} ${SRC} ${LINKFLAGS}
|
||||
|
||||
clean:
|
||||
-@rm -f ${PROG} *~ core *.core src/*.o src/halloc/src/*.o
|
||||
-@rm -f ${PROG} *~ core *.core src/*.o
|
||||
|
||||
install: ${PROG}
|
||||
${INSTALL} -c -m 555 -o root -g bin ${PROG} ${BINDIR}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue