]> rtime.felk.cvut.cz Git - orte.git/blob - orte/libaorte/jni/Android.mk
JORTE: add wrapper for ORTESubscriptionPull() and revert ORTEDomainStart() removal
[orte.git] / orte / libaorte / jni / Android.mk
1 LOCAL_PATH:= $(call my-dir)
2 include $(CLEAR_VARS)
3
4 LOCAL_MODULE    := orte
5 LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
6 LOCAL_LDLIBS := -llog
7 LOCAL_CFLAGS += -Wall
8 LOCAL_SRC_FILES := \
9 liborte/conv.c \
10 liborte/debug.c \
11 liborte/event.c \
12 liborte/fnmatch.c \
13 liborte/htimerNtp.c \
14 liborte/objectEntry.c \
15 liborte/objectEntryTimer.c \
16 liborte/objectUtils.c \
17 liborte/ORTEAppRecvThread.c \
18 liborte/ORTEAppSendThread.c \
19 liborte/ORTEDomainApp.c \
20 liborte/ORTEPublication.c \
21 liborte/ORTEPublicationTimer.c \
22 liborte/ORTESubscription.c \
23 liborte/ORTEDomain.c \
24 liborte/ORTEDomainMgr.c \
25 liborte/ORTEInit.c \
26 liborte/ORTEThreadUtils.c \
27 liborte/ORTETypeRegister.c \
28 liborte/ORTEVerbosity.c \
29 liborte/ORTEPattern.c \
30 liborte/ORTEMisc.c \
31 liborte/parameter.c \
32 liborte/RTPSAck.c \
33 liborte/RTPSCSTReader.c \
34 liborte/RTPSCSTReaderTimer.c \
35 liborte/RTPSCSTReaderProc.c \
36 liborte/RTPSCSTWriter.c \
37 liborte/RTPSCSTWriterTimer.c \
38 liborte/RTPSGap.c \
39 liborte/RTPSHeader.c \
40 liborte/RTPSHeardBeat.c \
41 liborte/RTPSInfoDST.c \
42 liborte/RTPSInfoREPLY.c \
43 liborte/RTPSInfoSRC.c \
44 liborte/RTPSInfoTS.c \
45 liborte/RTPSPad.c \
46 liborte/RTPSUtils.c \
47 liborte/RTPSVar.c \
48 liborte/RTPSIssue.c \
49 liborte/sock.c \
50 liborte/ul_gavl.c \
51 liborte/ul_gavlprim.c \
52 liborte/cdr.c
53
54 include $(BUILD_STATIC_LIBRARY)
55
56 include $(CLEAR_VARS)
57
58 LOCAL_MODULE    := jorte
59 LOCAL_C_INCLUDES := $(LOCAL_PATH)/include
60 LOCAL_LDLIBS := -llog
61 LOCAL_CFLAGS += -Wall 
62 LOCAL_SRC_FILES := \
63 libjorte/onLoad.c \
64 libjorte/getNtpTime.c \
65 libjorte/setType.c \
66 libjorte/setTopic.c \
67 libjorte/createAppInfo.c \
68 libjorte/createPubInfo.c \
69 libjorte/createSubInfo.c \
70 libjorte/setRecvInfo.c \
71 libjorte/JGetORTEConstant.c \
72 libjorte/JIPAddressToString.c \
73 libjorte/JNtpTimeToStringMs.c \
74 libjorte/JNtpTimeToStringUs.c \
75 libjorte/JORTEDomainAppCreate.c \
76 libjorte/JORTEDomainAppDestroy.c \
77 libjorte/JORTEDomainEvents.c \
78 libjorte/JORTEDomainEventsDestroy.c \
79 libjorte/JORTEDomainInitEvents.c \
80 libjorte/JORTEDomainMgrCreate.c \
81 libjorte/JORTEDomainMgrDestroy.c \
82 libjorte/JORTEDomainPropDefaultGet.c \
83 libjorte/JORTEDomainPropSet.c \
84 libjorte/JORTEDomainPropDestroy.c \
85 libjorte/JORTEDomainStart.c \
86 libjorte/JORTEInit.c \
87 libjorte/JORTEPublicationCreate.c \
88 libjorte/JORTEPublicationDestroy.c \
89 libjorte/JORTEPublicationSend.c \
90 libjorte/JORTEPublicationPropertiesSet.c \
91 libjorte/JORTEPublicationPropertiesGet.c \
92 libjorte/JORTEPublicationGetStatus.c \
93 libjorte/JORTEPublicationWaitForSubscriptions.c \
94 libjorte/JORTESleepMs.c \
95 libjorte/JORTESubscriptionCreate.c \
96 libjorte/JORTESubscriptionDestroy.c \
97 libjorte/JORTESubscriptionPropertiesGet.c \
98 libjorte/JORTESubscriptionPropertiesSet.c \
99 libjorte/JORTESubscriptionPull.c \
100 libjorte/JORTESubscriptionGetStatus.c \
101 libjorte/JORTESubscriptionWaitForPublications.c \
102 libjorte/JORTETypeRegisterAdd.c \
103 libjorte/JORTETypeRegisterDestroyAll.c \
104 libjorte/JORTEVerbositySetLogFile.c \
105 libjorte/JORTEVerbositySetOptions.c \
106 libjorte/JStringToIPAddress.c
107
108 LOCAL_STATIC_LIBRARIES := orte
109
110 include $(BUILD_SHARED_LIBRARY)