summaryrefslogtreecommitdiffstats
path: root/booty
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2009-02-27 10:10:12 -0500
committerChris Lumens <clumens@redhat.com>2009-03-04 15:37:04 -0500
commit61b67230cbd20837cc4ac763bcaf56e1199f5cfe (patch)
tree8749e5e128bf8870cf1109fbc07a9cefaa0fc703 /booty
parentf00ec6b554eece6689e71c50ff0eb59ad2549b54 (diff)
downloadanaconda-61b67230cbd20837cc4ac763bcaf56e1199f5cfe.tar.gz
anaconda-61b67230cbd20837cc4ac763bcaf56e1199f5cfe.tar.xz
anaconda-61b67230cbd20837cc4ac763bcaf56e1199f5cfe.zip
Update packaging and makefile system for the new booty module.
Diffstat (limited to 'booty')
-rw-r--r--booty/Makefile33
1 files changed, 33 insertions, 0 deletions
diff --git a/booty/Makefile b/booty/Makefile
new file mode 100644
index 000000000..1730985e2
--- /dev/null
+++ b/booty/Makefile
@@ -0,0 +1,33 @@
+#
+# Makefile
+#
+# Copyright (C) 2009 Red Hat, Inc. All rights reserved.
+#
+# This program 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.
+#
+# This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
+#
+
+include ../Makefile.inc
+
+all:
+ echo "nothing to make"
+
+install:
+ mkdir -p $(DESTDIR)/$(PYTHONLIBDIR)/booty
+ install -p -m 644 *.py $(DESTDIR)/$(PYTHONLIBDIR)/booty
+ ../py-compile --basedir $(DESTDIR)/$(PYTHONLIBDIR)/booty $(DESTDIR)/$(PYTHONLIBDIR)/booty/*.py
+
+clean:
+ rm -f *.o *.so *.pyc
+
+depend: