source: vscpl/src/hu/varadiistvan/scpl/Makefile.am@ 8:7b2598d1ea55

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

Imported the I/O library for POSIX and the pseudo-random generator

File size: 672 bytes
RevLine 
[6]1SUBDIRS=io
[1]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=\
[8]15 PseudoRandom.cc
[1]16
[6]17libvscpl_la_LIBADD=
18
[1]19if TARGET_API_POSIX
[6]20libvscpl_la_LIBADD+=_posix/libvscpl_posix.la
[1]21endif
22
23if TARGET_API_WIN32
[6]24libvscpl_la_LIBADD+=_win32/libvscpl_win32.la
[1]25endif
26
[6]27libvscpl_la_LIBADD+=io/libvscpl_io.la
28
[1]29include_vscpldir=$(includedir)/hu/varadiistvan/scpl
30include_vscpl_HEADERS=\
31 config.h \
[6]32 types.h \
[5]33 Thread.h \
34 Mutex.h \
[8]35 CondVar.h \
36 PseudoRandom.h
Note: See TracBrowser for help on using the repository browser.