mirror of
https://github.com/gtxaspec/wz_mini_hacks.git
synced 2025-10-10 17:38:05 +00:00
add libcallback sources
This commit is contained in:
11
libcallback_avonly/Makefile
Normal file
11
libcallback_avonly/Makefile
Normal file
@@ -0,0 +1,11 @@
|
||||
# libcallback.so
|
||||
|
||||
CC = /openmiko/build/mips-gcc472-glibc216-64bit/bin/mips-linux-uclibc-gnu-gcc
|
||||
CFLAGS = -fPIC -std=gnu99 -shared -ldl -lm
|
||||
CC_SRCS = video_callback.c audio_callback.c
|
||||
TARGET = libcallback.so
|
||||
|
||||
all: ${TARGET}
|
||||
|
||||
${TARGET}: ${CC_SRCS}
|
||||
${CC} ${CFLAGS} -o ${TARGET} ${CC_SRCS}
|
Reference in New Issue
Block a user