summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorDaniel Friesel <derf@derf.homelinux.org>2009-07-03 19:59:12 +0200
committerDaniel Friesel <derf@derf.homelinux.org>2009-07-03 19:59:12 +0200
commit8b699ad6da9bd742aa20b8bbd62a62b3c85ddb54 (patch)
treef59bda7905db8beb8035b0b7f2316a4b6b613fdd /Makefile
parentdfb67ebe4dd1c8f1cddad8a4858dae7b5abc63ef (diff)
Use Build.PL instead of a Makefile
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile26
1 files changed, 0 insertions, 26 deletions
diff --git a/Makefile b/Makefile
deleted file mode 100644
index da83292..0000000
--- a/Makefile
+++ /dev/null
@@ -1,26 +0,0 @@
-prefix = /usr/local
-perl_version = 5.10.0
-perl_lib = lib/perl
-
-build/Simplestore.3pm: lib/Simplestore.pm
- mkdir -p build
- pod2man $< > $@
-
-test: test/simplestore.t
- perl -Ilib $<
-
-install: build/Simplestore.3pm
- mkdir -p $(prefix)/$(perl_lib)/$(perl_version) $(prefix)/share/man/man3
- cp lib/Simplestore.pm $(prefix)/$(perl_lib)/$(perl_version)
- cp build/Simplestore.3pm $(prefix)/share/man/man3
- chmod 644 $(prefix)/$(perl_lib)/$(perl_version)/Simplestore.pm
- chmod 644 $(prefix)/share/man/man3/Simplestore.3pm
-
-uninstall:
- rm -f $(prefix)/$(perl_lib)/$(perl_version)/Simplestore.pm
- rm -f $(prefix)/share/man/man1/Simplestore.3pm
-
-clean:
- rm -rf build
-
-.PHONY: clean install test uninstall