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 \
|
2003-03-12 22:34:07 +00:00
|
|
|
CJobList.cpp \
|
2002-06-18 19:44:34 +00:00
|
|
|
CLog.cpp \
|
|
|
|
CStopwatch.cpp \
|
2003-01-04 22:01:32 +00:00
|
|
|
CStringUtil.cpp \
|
|
|
|
CUnicode.cpp \
|
|
|
|
LogOutputters.cpp \
|
2002-06-18 19:44:34 +00:00
|
|
|
XBase.cpp \
|
|
|
|
CFunctionJob.h \
|
2003-03-12 22:34:07 +00:00
|
|
|
CJobList.h \
|
2002-06-18 19:44:34 +00:00
|
|
|
CLog.h \
|
|
|
|
CStopwatch.h \
|
|
|
|
CString.h \
|
2003-01-04 22:01:32 +00:00
|
|
|
CStringUtil.h \
|
|
|
|
CUnicode.h \
|
2002-06-18 19:44:34 +00:00
|
|
|
IJob.h \
|
2003-01-04 22:01:32 +00:00
|
|
|
ILogOutputter.h \
|
|
|
|
LogOutputters.h \
|
2002-06-18 19:44:34 +00:00
|
|
|
TMethodJob.h \
|
|
|
|
XBase.h \
|
|
|
|
$(NULL)
|
|
|
|
INCLUDES = \
|
2003-01-04 22:01:32 +00:00
|
|
|
-I$(VDEPTH)/lib/common \
|
|
|
|
-I$(VDEPTH)/lib/arch \
|
2002-06-18 19:44:34 +00:00
|
|
|
$(NULL)
|