in order to: - fix wrong design - fix include paths - fix installation of header files git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@333 3ecf2c5c-341e-0410-92b4-d18e462d057c
73 lines
2 KiB
Makefile
73 lines
2 KiB
Makefile
# src/backend/Makefile.am - Copyright 2005, 2006, University
|
|
# of Padova, dept. of Pure and Applied
|
|
# Mathematics
|
|
#
|
|
# This file is part of SGPEMv2.
|
|
#
|
|
# This is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# SGPEMv2 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.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with SGPEMv2; if not, write to the Free Software
|
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
|
|
|
# you'll want to setup a testsuite for this component, sooner or later.
|
|
#SUBDIRS = testsuite
|
|
|
|
#additional rules:
|
|
%_wrap.cc : %.i
|
|
$(SWIG) $(SWIG_PYTHON_OPT) -o $@ $<
|
|
|
|
# Program & library names
|
|
pkglib_LTLIBRARIES = libbackend.la
|
|
|
|
# Other directories
|
|
sharedir = $(pkgdatadir)
|
|
pycdir = $(sharedir)/policies
|
|
moddir = $(sharedir)/modules
|
|
localedir = @datadir@/locale
|
|
|
|
libbackend_la_CPPFLAGS = -I@top_srcdir@ \
|
|
-DPYCDIR="\"$(pycdir)\"" \
|
|
-DMODDIR="\"$(moddir)\"" \
|
|
-DLOCALEDIR="\"$(localedir)\"" \
|
|
$(PYTHON_CPPFLAGS) \
|
|
$(GLIBMM_CFLAGS)
|
|
libbackend_la_LIBADD = ../pyloader/libpyloader.la
|
|
libbackend_la_LDFLAGS = $(GLIBMM_LDFLAGS) \
|
|
$(LT_LDFLAGS)
|
|
|
|
# Please keep this in sorted order:
|
|
libbackend_la_SOURCES = \
|
|
history.cc \
|
|
observed_subject.cc \
|
|
policy.cc \
|
|
policy_manager.cc \
|
|
policy_parameters.cc \
|
|
process.cc \
|
|
schedulable.cc \
|
|
schedulable_list.cc \
|
|
schedulable_status.cc \
|
|
scheduler.cc \
|
|
slice.cc
|
|
|
|
noinst_HEADERS = \
|
|
history.hh \
|
|
observed_subject.hh \
|
|
policy.hh \
|
|
policy_manager.hh \
|
|
policy_parameters.hh \
|
|
process.hh \
|
|
schedulable.hh \
|
|
schedulable_list.hh \
|
|
schedulable_status.hh \
|
|
scheduler.hh \
|
|
slice.hh
|