- 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:
tchernobog 2006-01-21 15:02:09 +00:00
parent eeecd2b992
commit ef6dd558d2
3 changed files with 32 additions and 4 deletions

View File

@ -92,6 +92,7 @@ doc/Makefile
m4/Makefile
po/Makefile.in
src/Makefile
src/builtin-policies/Makefile
src/testsuite/Makefile
])
AC_OUTPUT

View File

@ -18,7 +18,7 @@
# along with SGPEMv2; if not, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
SUBDIRS = testsuite
SUBDIRS = testsuite builtin-policies
#additional rules:
%_wrap.cc : %.i
@ -55,6 +55,3 @@ noinst_HEADERS = # main.hh ...
# loadable python modules
mod_PYTHON = # policy.py
# built-in policies
pyc_PYTHON = # fcfs.py rr.py rr-p.py ...

View File

@ -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 ...