2002-08-02 19:57:46 +00:00
|
|
|
# synergy -- mouse and keyboard sharing utility
|
|
|
|
# Copyright (C) 2002 Chris Schoeneman
|
|
|
|
#
|
|
|
|
# This package is free software; you can redistribute it and/or
|
|
|
|
# modify it under the terms of the GNU General Public License
|
|
|
|
# found in the file COPYING that should have accompanied this file.
|
|
|
|
#
|
|
|
|
# This package is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
|
2002-06-18 19:44:34 +00:00
|
|
|
## Process this file with automake to produce Makefile.in
|
|
|
|
NULL =
|
2002-07-30 16:52:46 +00:00
|
|
|
DEPTH = ../..
|
2002-07-31 17:34:05 +00:00
|
|
|
VDEPTH = ./$(VPATH)/$(DEPTH)
|
2002-06-18 19:44:34 +00:00
|
|
|
|
2002-07-31 16:27:06 +00:00
|
|
|
EXTRA_DIST = \
|
|
|
|
mt.dsp \
|
|
|
|
$(NULL)
|
|
|
|
|
2002-07-31 16:57:26 +00:00
|
|
|
MAINTAINERCLEANFILES = \
|
|
|
|
Makefile.in \
|
|
|
|
$(NULL)
|
|
|
|
|
2002-06-18 19:44:34 +00:00
|
|
|
noinst_LIBRARIES = libmt.a
|
|
|
|
libmt_a_SOURCES = \
|
2004-02-15 18:12:35 +00:00
|
|
|
CCondVar.cpp \
|
2002-06-18 19:44:34 +00:00
|
|
|
CLock.cpp \
|
|
|
|
CMutex.cpp \
|
|
|
|
CThread.cpp \
|
2002-10-15 22:01:41 +00:00
|
|
|
XMT.cpp \
|
2002-06-22 17:31:24 +00:00
|
|
|
CCondVar.h \
|
|
|
|
CLock.h \
|
|
|
|
CMutex.h \
|
|
|
|
CThread.h \
|
2002-10-15 22:01:41 +00:00
|
|
|
XMT.h \
|
2002-06-22 17:31:24 +00:00
|
|
|
XThread.h \
|
2002-06-18 19:44:34 +00:00
|
|
|
$(NULL)
|
|
|
|
INCLUDES = \
|
2003-01-04 22:01:32 +00:00
|
|
|
-I$(VDEPTH)/lib/common \
|
|
|
|
-I$(VDEPTH)/lib/arch \
|
2002-07-31 17:34:05 +00:00
|
|
|
-I$(VDEPTH)/lib/base \
|
2002-06-18 19:44:34 +00:00
|
|
|
$(NULL)
|