summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-09-13 18:28:28 -0400
committerMichael DeHaan <mdehaan@mdehaan.rdu.redhat.com>2007-09-13 18:28:28 -0400
commit30d26a3e234d3229e128c977b7aeefdc425ad910 (patch)
treeab53db2a8d30f88bdf91bfa00c345a6f2ac03d98 /Makefile
parentbaec248f1bf62ec6ed099d1d29516cab917655a8 (diff)
downloadthird_party-cobbler-30d26a3e234d3229e128c977b7aeefdc425ad910.tar.gz
third_party-cobbler-30d26a3e234d3229e128c977b7aeefdc425ad910.tar.xz
third_party-cobbler-30d26a3e234d3229e128c977b7aeefdc425ad910.zip
Adds edit capability to distro and profile objects, plus some random hacking on the WebUI.
Also adds delete checkboxes that are currently not implemented.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 4d162f3..7a92fe9 100644
--- a/Makefile
+++ b/Makefile
@@ -17,13 +17,13 @@ test: install
python tests/tests.py
-rm -rf /tmp/_cobbler-*
-build: clean messages
+build: clean updatewui messages
python setup.py build -f
install: clean manpage
python setup.py install -f
-sdist: clean messages
+sdist: clean messages updatewui
python setup.py sdist
messages: cobbler/*.py
@@ -55,3 +55,8 @@ srpm: manpage sdist
--define "_sourcedir %{_topdir}" \
-bs --nodeps cobbler.spec
+updatewui:
+ cheetah-compile ./webui_templates/master.tmpl
+ -(rm ./webui_templates/*.bak)
+ mv ./webui_templates/master.py ./cobbler/webui
+