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 = \
|
|
|
|
base.dsp \
|
|
|
|
$(NULL)
|
|
|
|
|
2002-07-31 16:57:26 +00:00
|
|
|
MAINTAINERCLEANFILES = \
|
|
|
|
Makefile.in \
|
|
|
|
$(NULL)
|
|
|
|
|
2002-06-18 19:44:34 +00:00
|
|
|
noinst_LIBRARIES = libbase.a
|
|
|
|
libbase_a_SOURCES = \
|
|
|
|
CFunctionJob.cpp \
|
|
|
|
CLog.cpp \
|
|
|
|
CStopwatch.cpp \
|
|
|
|
CString.cpp \
|
|
|
|
XBase.cpp \
|
|
|
|
BasicTypes.h \
|
|
|
|
CFunctionJob.h \
|
|
|
|
CLog.h \
|
|
|
|
CStopwatch.h \
|
|
|
|
CString.h \
|
|
|
|
IInterface.h \
|
|
|
|
IJob.h \
|
|
|
|
TMethodJob.h \
|
2002-07-31 16:57:26 +00:00
|
|
|
Version.h \
|
2002-06-18 19:44:34 +00:00
|
|
|
XBase.h \
|
|
|
|
common.h \
|
|
|
|
stdfstream.h \
|
|
|
|
stdistream.h \
|
|
|
|
stdlist.h \
|
|
|
|
stdmap.h \
|
|
|
|
stdostream.h \
|
|
|
|
stdpost.h \
|
|
|
|
stdpre.h \
|
|
|
|
stdset.h \
|
|
|
|
stdsstream.h \
|
|
|
|
stdvector.h \
|
|
|
|
$(NULL)
|
|
|
|
INCLUDES = \
|
|
|
|
$(NULL)
|