source: xplcommon/src/xplcommon/Makefile.am@ 2:b8c3435b818d

Last change on this file since 2:b8c3435b818d was 2:b8c3435b818d, checked in by István Váradi <ivaradi@…>, 11 years ago

Using less ambiguous conditionals to decide between POSIX vs. Windows compilation

File size: 399 bytes
Line 
1lib_LTLIBRARIES=libxplcommon.la
2
3libxplcommon_la_SOURCES=
4
5if TARGET_API_POSIX
6libxplcommon_la_SOURCES += \
7 POSIXThread.cc \
8 POSIXWaitable.cc \
9 POSIXWaiter.cc
10endif
11
12if TARGET_API_WIN32
13libxplcommon_la_SOURCES += \
14 Win32Thread.cc
15endif
16
17include_xplcommondir=$(includedir)/xplcommon
18include_xplcommon_HEADERS=\
19 POSIXThread.h \
20 Win32Thread.h \
21 Thread.h \
22 POSIXWaitable.h \
23 POSIXWaiter.h
Note: See TracBrowser for help on using the repository browser.