17 lines
293 B
Makefile
17 lines
293 B
Makefile
|
## Process this file with automake to produce Makefile.in
|
||
|
NULL =
|
||
|
DEPTH = ..
|
||
|
|
||
|
noinst_LIBRARIES = libmt.a
|
||
|
libmt_a_SOURCES = \
|
||
|
CLock.cpp \
|
||
|
CMutex.cpp \
|
||
|
CCondVar.cpp \
|
||
|
CThread.cpp \
|
||
|
CThreadRep.cpp \
|
||
|
CTimerThread.cpp \
|
||
|
$(NULL)
|
||
|
INCLUDES = \
|
||
|
-I$(DEPTH)/base \
|
||
|
$(NULL)
|