29 lines
401 B
Makefile
29 lines
401 B
Makefile
|
DEPTH=..
|
||
|
include $(DEPTH)/Makecommon
|
||
|
|
||
|
#
|
||
|
# target file
|
||
|
#
|
||
|
TARGET = mt
|
||
|
|
||
|
#
|
||
|
# source files
|
||
|
#
|
||
|
LCXXINCS = \
|
||
|
-I$(DEPTH)/base \
|
||
|
$(NULL)
|
||
|
CXXFILES = \
|
||
|
CLock.cpp \
|
||
|
CMutex.cpp \
|
||
|
CCondVar.cpp \
|
||
|
CThread.cpp \
|
||
|
CThreadRep.cpp \
|
||
|
CTimerThread.cpp \
|
||
|
$(NULL)
|
||
|
|
||
|
targets: $(LIBTARGET)
|
||
|
|
||
|
$(LIBTARGET): $(OBJECTS)
|
||
|
if test ! -d $(LIBDIR); then $(MKDIR) $(LIBDIR); fi
|
||
|
$(ARF) $(LIBTARGET) $(OBJECTS)
|