source: vscpl/src/hu/varadiistvan/scpl/Makefile.am@ 19:0739d3edb6b7

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

Modified to avoid the distribution of config.h

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