Files
Brandyn / Techy fcc1b09210 init
2026-04-04 15:40:51 -05:00

14 lines
334 B
Makefile

LOCAL_PATH := $(call my-dir)
# Define vars for library that will be build statically.
include $(CLEAR_VARS)
LOCAL_MODULE := ogg
LOCAL_C_INCLUDES := ../../../include
LOCAL_SRC_FILES := ../../../src/bitwise.c \
../../../src/framing.c
# Optional compiler flags.
LOCAL_CFLAGS = -DLIBOGG_EXPORTS
include $(BUILD_STATIC_LIBRARY)