summaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorJonathan Dieter <jdieter@gmail.com>2007-03-22 18:53:33 +0200
committerJonathan Dieter <jdieter@gmail.com>2007-03-22 18:53:33 +0200
commit8671e9301f77ab02f1cfcd14fca67fdbe7ab5483 (patch)
tree657b700437c716e74f598aca09642642eb2cd068 /Makefile
parentd36468ff5aefbb1afc41d2f35717fbf340873604 (diff)
downloadpresto-8671e9301f77ab02f1cfcd14fca67fdbe7ab5483.tar.gz
presto-8671e9301f77ab02f1cfcd14fca67fdbe7ab5483.tar.xz
presto-8671e9301f77ab02f1cfcd14fca67fdbe7ab5483.zip
Version 0.2
* Makefile modified for use in rpms Signed-off-by: Jonathan Dieter <jdieter@gmail.com>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile18
1 files changed, 9 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index 865d06e..5ea597a 100644
--- a/Makefile
+++ b/Makefile
@@ -3,12 +3,12 @@ clean:
cd shared; rm -f *.pyc *.pyo *~
install:
- mkdir -p /usr/lib/yum-plugins
- install -m 644 presto.py /usr/lib/yum-plugins
- mkdir -p /etc/yum/pluginconf.d
- install -m 644 presto.conf /etc/yum/pluginconf.d
- mkdir -p /usr/share/presto
- install -m 644 shared/prestoRepo.py /usr/share/presto
- install -m 644 shared/prestomdparser.py /usr/share/presto
- install -m 644 shared/prestoTransaction.py /usr/share/presto
- install -m 644 shared/deltarpm.py /usr/share/presto
+ mkdir -p $(DESTDIR)/usr/lib/yum-plugins
+ install -m 644 presto.py $(DESTDIR)/usr/lib/yum-plugins
+ mkdir -p $(DESTDIR)/etc/yum/pluginconf.d
+ install -m 644 presto.conf $(DESTDIR)/etc/yum/pluginconf.d
+ mkdir -p $(DESTDIR)/usr/share/presto
+ install -m 644 shared/prestoRepo.py $(DESTDIR)/usr/share/presto
+ install -m 644 shared/prestomdparser.py $(DESTDIR)/usr/share/presto
+ install -m 644 shared/prestoTransaction.py $(DESTDIR)/usr/share/presto
+ install -m 644 shared/deltarpm.py $(DESTDIR)/usr/share/presto