source: vscpl/src/hu/varadiistvan/scpl/Makefile.am@ 39:897a32ccecc8

Last change on this file since 39:897a32ccecc8 was 36:f9699d5dafe2, checked in by István Váradi <ivaradi@…>, 19 months ago

The socket library is linked to the Windows library

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