File: Android.mk

package info (click to toggle)
waffle 1.8.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,140 kB
  • sloc: ansic: 18,784; xml: 2,909; objc: 465; cpp: 267; sh: 125; makefile: 18
file content (20 lines) | stat: -rw-r--r-- 402 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
LOCAL_PATH:= $(call my-dir)
include $(CLEAR_VARS)

LOCAL_MODULE_TAGS := eng
LOCAL_MODULE:= gl_basic

LOCAL_CFLAGS:= \
        -DANDROID_STUB \
        -DWAFFLE_HAS_ANDROID \
        -std=c99 \

LOCAL_C_INCLUDES := $(LOCAL_PATH)/../include/waffle/
LOCAL_C_INCLUDES += $(LOCAL_PATH)/../src/waffle/

LOCAL_SRC_FILES:= \
    gl_basic.c \

LOCAL_SHARED_LIBRARIES := libwaffle-1

include $(BUILD_EXECUTABLE)