Changeset 32:4bef4944955f in xplcommon
- Timestamp:
- 01/02/13 14:30:45 (12 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 4 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/xplcommon/Makefile.am
r31 r32 27 27 types.h \ 28 28 PseudoRandom.h \ 29 Thread.h \ 30 Mutex.h \ 29 31 Failable.h \ 30 Thread.h \31 32 Waiter.h \ 32 33 WaitableEvent.h \ -
src/xplcommon/posix/Makefile.am
r21 r32 21 21 include_xplcommon_posix_HEADERS=\ 22 22 Thread.h \ 23 Mutex.h \ 23 24 Waitable.h \ 24 25 Waiter.h \ -
src/xplcommon/win32/Makefile.am
r26 r32 16 16 include_xplcommon_win32_HEADERS=\ 17 17 Thread.h \ 18 Mutex.h \ 18 19 EventFailable.h \ 19 20 Event.h \ -
test/Makefile.am
r29 r32 1 1 INCLUDES=-I$(top_srcdir)/src 2 2 3 noinst_PROGRAMS=testevent testlocsock testblkstream 3 noinst_PROGRAMS=testevent testlocsock testblkstream testmutex 4 4 if TARGET_API_POSIX 5 5 noinst_PROGRAMS+=testrandom … … 33 33 endif 34 34 35 testmutex_SOURCES=testmutex.cc 36 testmutex_LDADD=../src/xplcommon/libxplcommon.la 37 if TARGET_API_POSIX 38 testmutex_LDADD+=-lpthread 39 endif 40 if TARGET_API_WIN32 41 testmutex_LDFLAGS=-static-libgcc -static-libstdc++ 42 endif 43 35 44 testrandom_SOURCES=testrandom.cc 36 45 testrandom_LDADD=../src/xplcommon/libxplcommon.la
Note:
See TracChangeset
for help on using the changeset viewer.