source: vscpl/src/hu/varadiistvan/scpl/Makefile.am@ 1:ee063b6aaa32

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

The Thread class can be compiled for Linux and Win32

File size: 459 bytes
Line 
1SUBDIRS=
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 dummy.cc
16
17if TARGET_API_POSIX
18libvscpl_la_LIBADD=_posix/libvscpl_posix.la
19endif
20
21if TARGET_API_WIN32
22libvscpl_la_LIBADD=_win32/libvscpl_win32.la
23endif
24
25include_vscpldir=$(includedir)/hu/varadiistvan/scpl
26include_vscpl_HEADERS=\
27 config.h \
28 Thread.h
Note: See TracBrowser for help on using the repository browser.