source: vscpl/src/hu/varadiistvan/scpl/Makefile.am@ 21:22a8774452ac

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

Added linking libpthread

File size: 697 bytes
Line 
1SUBDIRS=io
2
3if TARGET_API_POSIX
4SUBDIRS+=_posix
5AM_LDFLAGS=-lpthread
6endif
7
8if TARGET_API_WIN32
9SUBDIRS+=_win32
10AM_LDFLAGS=-no-undefined
11endif
12
13lib_LTLIBRARIES=libvscpl.la
14
15libvscpl_la_SOURCES=\
16 PseudoRandom.cc
17
18libvscpl_la_LIBADD=
19
20if TARGET_API_POSIX
21libvscpl_la_LIBADD+=_posix/libvscpl_posix.la
22endif
23
24if TARGET_API_WIN32
25libvscpl_la_LIBADD+=_win32/libvscpl_win32.la
26endif
27
28libvscpl_la_LIBADD+=io/libvscpl_io.la
29
30include_vscpldir=$(includedir)/hu/varadiistvan/scpl
31include_vscpl_HEADERS=\
32 types.h \
33 Thread.h \
34 Mutex.h \
35 CondVar.h \
36 PseudoRandom.h
37nodist_include_vscpl_HEADERS=config.h
Note: See TracBrowser for help on using the repository browser.