File: Android.mk

package info (click to toggle)
belr 5.3.105-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 488 kB
  • sloc: cpp: 3,172; makefile: 14
file content (18 lines) | stat: -rw-r--r-- 291 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
LOCAL_PATH:= $(call my-dir)/../../src

include $(CLEAR_VARS)

LOCAL_CPP_EXTENSION := .cc

LOCAL_C_INCLUDES += \
	$(LOCAL_PATH)/../include \

LOCAL_SRC_FILES := \
	abnf.cc \
	belr.cc \
	grammarbuilder.cc \
	parser.cc \

LOCAL_MODULE:= libbelr

include $(BUILD_STATIC_LIBRARY)