mirror of
https://github.com/debauchee/barrier.git
synced 2026-05-11 00:58:14 +08:00
started to convert to autoconf/automake.
This commit is contained in:
28
mt/Makefile
28
mt/Makefile
@@ -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
16
mt/Makefile.am
Normal 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)
|
||||
Reference in New Issue
Block a user