aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLibravatarChristoph Goehre <christoph.goehre@gmx.de>2007-10-06 12:19:59 +0200
committerLibravatarChristoph Goehre <christoph.goehre@gmx.de>2007-10-06 12:19:59 +0200
commit1697c0ad368dcec8594ccbfdfdb67c9aba828253 (patch)
treed77e778509b2388c872f617009d36bc2c848e346
parent218a8dad008909b761f772f96927c8b3b51e3214 (diff)
remove Makefile - we use setup.py for module installation
-rw-r--r--Makefile19
1 files changed, 0 insertions, 19 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index 6e3d233..0000000
--- a/Makefile
+++ /dev/null
@@ -1,19 +0,0 @@
-# Makefile for mini-dinstall
-
-PYTHONVERSION=$(shell pyversions -dv)
-
-pkgdir = $(DESTDIR)/usr/lib/python$(PYTHONVERSION)/site-packages/minidinstall
-bindir = $(DESTDIR)/usr/bin
-mandir = $(DESTDIR)/usr/share/man/man1
-
-install:
- install -o root -g root -m 0755 -d $(pkgdir) $(bindir) $(mandir)
-
- # install the application
- install -o root -g root -m 0644 lib/*.py $(pkgdir)
- install -o root -g root -m 0755 mini-dinstall $(bindir)
-
- # install documentataion
- install -o root -g root -m 0644 doc/mini-dinstall.1 $(mandir)
-
-.PHONY: install