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