source: xplcommon/src/xplcommon/Makefile.am@ 4:d061ad3be7fd

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

Added support for a waitable event for POSIX and a test program

File size: 433 bytes
Line 
1SUBDIRS=
2if TARGET_API_POSIX
3SUBDIRS+=posix
4endif
5if TARGET_API_WIN32
6SUBDIRS+=win32
7endif
8
9lib_LTLIBRARIES=libxplcommon.la
10
11libxplcommon_la_SOURCES=
12
13if TARGET_API_POSIX
14libxplcommon_la_LIBADD=posix/libxplcommon_posix.la
15endif
16
17if TARGET_API_WIN32
18libxplcommon_la_LIBADD=win32/libxplcommon_win32.la
19endif
20
21include_xplcommondir=$(includedir)/xplcommon
22include_xplcommon_HEADERS=\
23 config.h \
24 Thread.h \
25 Waiter.h \
26 WaitableEvent.h
Note: See TracBrowser for help on using the repository browser.