Changeset 5:55892b4e7748 in vscpl
- Timestamp:
- 01/19/13 14:07:10 (12 years ago)
- Branch:
- default
- Phase:
- public
- Files:
-
- 6 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
src/hu/varadiistvan/scpl/Makefile.am
r1 r5 26 26 include_vscpl_HEADERS=\ 27 27 config.h \ 28 Thread.h 28 Thread.h \ 29 Mutex.h \ 30 CondVar.h -
src/hu/varadiistvan/scpl/_posix/Makefile.am
r1 r5 2 2 3 3 libvscpl_posix_la_SOURCES = \ 4 Thread.cc 4 Thread.cc \ 5 CondVar.cc 5 6 6 7 include_vscpl_posixdir=$(includedir)/hu/varadiistvan/scpl/_posix 7 8 include_vscpl_posix_HEADERS=\ 8 Thread.h 9 Thread.h \ 10 Mutex.h \ 11 CondVar.h -
src/hu/varadiistvan/scpl/_win32/Makefile.am
r1 r5 2 2 3 3 libvscpl_win32_la_SOURCES = \ 4 Thread.cc 4 Thread.cc \ 5 CondVar.cc 5 6 6 7 include_win32_posixdir=$(includedir)/hu/varadiistvan/scpl/_win32 7 8 include_win32_posix_HEADERS=\ 8 Thread.h 9 Thread.h \ 10 CondVar.h -
test/Makefile.am
r4 r5 1 1 INCLUDES=-I$(top_srcdir)/src -I../src/hu/varadiistvan/scpl 2 2 3 noinst_PROGRAMS=testthread testmutex 3 noinst_PROGRAMS=testthread testmutex testcondvar 4 4 5 5 LDADD=../src/hu/varadiistvan/scpl/libvscpl.la … … 14 14 15 15 testmutex_SOURCES=testmutex.cc 16 17 testcondvar_SOURCES=testcondvar.cc
Note:
See TracChangeset
for help on using the changeset viewer.