source: xplra/src/xplra/Makefile.am@ 4:48b5811d4b46

Last change on this file since 4:48b5811d4b46 was 4:48b5811d4b46, checked in by István Váradi <ivaradi@…>, 12 years ago

Added all the dataref retrieving tasks

File size: 690 bytes
Line 
1INCLUDES=@XPSDK_INCLUDES@
2
3AM_CXXFLAGS=$(LIBXPLCOMMON_CFLAGS)
4
5AM_CPPFLAGS=-DXPLM210
6
7if TARGET_API_WIN32
8AM_CPPFLAGS+=-DIBM
9AM_LDFLAGS=@XPSDK_LDFLAGS@ -no-undefined
10if TARGET_API_WIN64
11AM_LDFLAGS+=-lXPLM_64
12else
13AM_LDFLAGS+=-lXPLM
14endif
15endif
16
17if TARGET_API_POSIX
18AM_CPPFLAGS+=-DLIN
19AM_CXXFLAGS+=-fPIC -fno-stack-protector
20endif
21
22
23lib_LTLIBRARIES=libxplra.la
24
25libxplra_la_SOURCES= \
26 plugin.cc \
27 ListenThread.cc \
28 RequestQueue.cc \
29 ServerThread.cc \
30 TaskRequest.cc \
31 DataRefTask.cc
32
33libxplra_la_LIBADD=$(LIBXPLCOMMON_LIBS)
34
35noinst_HEADERS= \
36 ListenThread.h \
37 Request.h \
38 RequestQueue.h \
39 ServerThread.h \
40 Task.h \
41 TaskRequest.h \
42 DataRefTask.h \
43 GetDataRefTask.h
Note: See TracBrowser for help on using the repository browser.