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