From e87e368e39b77775065478825582e0265d0487f9 Mon Sep 17 00:00:00 2001 From: Daniel Friesel Date: Sun, 7 Feb 2010 19:31:50 +0100 Subject: Add Makefile and INSTALL file --- .gitignore | 1 + INSTALL | 4 ++++ Makefile | 23 +++++++++++++++++++++++ 3 files changed, 28 insertions(+) create mode 100644 .gitignore create mode 100644 INSTALL create mode 100644 Makefile diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..84c048a --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +/build/ diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..129e2c0 --- /dev/null +++ b/INSTALL @@ -0,0 +1,4 @@ +$ make +# make install + +Requires the Image::Imlib2 perl module. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..1e04745 --- /dev/null +++ b/Makefile @@ -0,0 +1,23 @@ +prefix = /usr/local + +default: build/gen-xhtml-thumbnails.1 + +build/%.1: bin/% + mkdir -p build + pod2man $< > $@ + +install: build/gen-xhtml-thumbnails.1 + mkdir -p $(prefix)/bin $(prefix)/share/man/man1 + cp bin/gen-xhtml-thumbnails $(prefix)/bin/gen-xhtml-thumbnails + cp build/gen-xhtml-thumbnails.1 $(prefix)/share/man/man1/gen-xhtml-thumbnails.1 + chmod 755 $(prefix)/bin/gen-xhtml-thumbnails + chmod 644 $(prefix)/share/man/man1/gen-xhtml-thumbnails.1 + +uninstall: + rm -f $(prefix)/bin/gen-xhtml-thumbnails + rm -f $(prefix)/share/man/man1/gen-xhtml-thumbnails.1 + +clean: + rm -rf build + +.PHONY: install uninstall clean -- cgit v1.2.3