- Added separate directory for keeping builtin policies
git-svn-id: svn://svn.gna.org/svn/sgpemv2/trunk@181 3ecf2c5c-341e-0410-92b4-d18e462d057c
This commit is contained in:
parent
eeecd2b992
commit
ef6dd558d2
|
@ -92,6 +92,7 @@ doc/Makefile
|
||||||
m4/Makefile
|
m4/Makefile
|
||||||
po/Makefile.in
|
po/Makefile.in
|
||||||
src/Makefile
|
src/Makefile
|
||||||
|
src/builtin-policies/Makefile
|
||||||
src/testsuite/Makefile
|
src/testsuite/Makefile
|
||||||
])
|
])
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
|
|
|
@ -18,7 +18,7 @@
|
||||||
# along with SGPEMv2; if not, write to the Free Software
|
# along with SGPEMv2; if not, write to the Free Software
|
||||||
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
|
||||||
|
|
||||||
SUBDIRS = testsuite
|
SUBDIRS = testsuite builtin-policies
|
||||||
|
|
||||||
#additional rules:
|
#additional rules:
|
||||||
%_wrap.cc : %.i
|
%_wrap.cc : %.i
|
||||||
|
@ -55,6 +55,3 @@ noinst_HEADERS = # main.hh ...
|
||||||
# loadable python modules
|
# loadable python modules
|
||||||
mod_PYTHON = # policy.py
|
mod_PYTHON = # policy.py
|
||||||
|
|
||||||
# built-in policies
|
|
||||||
pyc_PYTHON = # fcfs.py rr.py rr-p.py ...
|
|
||||||
|
|
||||||
|
|
|
@ -0,0 +1,30 @@
|
||||||
|
# src/builtin-policies/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
|
||||||
|
|
||||||
|
# Other directories
|
||||||
|
sharedir = @datadir@/sgpemv2
|
||||||
|
pycdir = $(sharedir)/policies
|
||||||
|
moddir = $(sharedir)/modules
|
||||||
|
|
||||||
|
# loadable python modules
|
||||||
|
mod_PYTHON = # policy.py
|
||||||
|
|
||||||
|
# built-in policies
|
||||||
|
pyc_PYTHON = # fcfs.py rr.py rr-p.py ...
|
Loading…
Reference in New Issue