source: xplra/src/xplra/Makefile.am@ 5:94fdd791268f

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

Extracted the protocol-related constants into their own class

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