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