started to convert to autoconf/automake.

This commit is contained in:
crs
2002-06-18 19:44:34 +00:00
parent fadc73d348
commit 1c604ecc3d
26 changed files with 507 additions and 618 deletions

View File

@@ -1,28 +0,0 @@
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)

16
mt/Makefile.am Normal file
View File

@@ -0,0 +1,16 @@
## 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)